:root {
    --success-color: #198754;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #0d6efd 100%);
    padding: 1.5rem;
}

.card-header h1 {
    margin: 0;
    font-size: 1.8rem;
}

.form-check-label {
    font-size: 0.9rem;
    cursor: pointer;
}

.form-select, .form-control {
    transition: all 0.3s ease;
}

.form-select:focus, .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* Badges */
.badge {
    font-size: 0.85rem;
    padding: 0.4em 0.6em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-check-label {
        font-size: 0.85rem;
    }

    .btn-lg {
        width: 100%;
        margin-bottom: 10px;
    }

    .d-md-flex {
        flex-direction: column;
    }

    .card-header h1 {
        font-size: 1.5rem;
    }

    textarea {
        font-size: 0.9rem;
    }
}