/* Quick Predict Modal Styles */
#quickPredictModal .modal-header {
    background: linear-gradient(135deg, #007105 0%, #0cae13 100%);
    color: white;
    border-bottom: none;
}

#quickPredictModal .modal-title i {
    font-size: 1.3rem;
    margin-right: 8px;
}

#quickPredictModal .btn-close {
    filter: brightness(0) invert(1);
}

#quickPredictModal .modal-body {
    padding: 1.5rem;
}

.quick-predict-content .match-header {
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.team-logo-large {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    padding: 5px;
    background: white;
}

.teams-display {
    margin-bottom: 1.5rem;
}

.form-badges {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.form-badges .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    font-weight: 600;
}

.prediction-form .form-control {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
}

.prediction-form .form-control:focus {
    border-color: #007105;
    box-shadow: 0 0 0 0.2rem rgba(0, 113, 5, 0.25);
}

.prediction-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

@media (max-width: 576px) {
    .team-logo-large {
        width: 50px;
        height: 50px;
    }

    .prediction-form .form-control {
        font-size: 1.2rem;
    }
}
