/* Custom styles for Football Squad Monitor */

/* Override some Bootstrap defaults for better readability */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* Custom card styling */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

/* Table enhancements */
.table {
    margin-bottom: 0;
}

.table th {
    border-top: none;
}

/* Fixture date headers */
.date-header {
    background-color: #2c3e50 !important; 
    border-bottom: 1px solid #1a2532 !important;
}

.date-header td {
    color: #ffffff !important;
    font-weight: bold;
}

/* Badge customization */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Custom button group spacing */
.btn-group > .btn {
    margin-right: 0.125rem;
}

/* Status indicators */
.status-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.status-active {
    background-color: var(--bs-success);
}

.status-inactive {
    background-color: var(--bs-secondary);
}

/* Navbar customization */
.navbar {
    padding: 0.75rem 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.navbar-brand {
    font-weight: 600;
}

/* Form controls */
.form-control, .btn {
    border-radius: 0.25rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .card-header {
        padding: 0.75rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
