.form-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.form-section {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

.btn-warning {
    background-color: #ffc107;
    border: none;
    padding: 5px 15px;
    border-radius: 6px;
    font-weight: 500;
}

h2 {
    color: #212529;
    font-weight: 700;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-section {
        margin-bottom: 15px;
    }
    
    .form-card {
        padding: 20px;
    }
}

/* Readonly field styling */
input[readonly], input[readonly]:focus {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    cursor: not-allowed;
}

/* Checkbox styling */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Textarea specific styling */
textarea.form-control {
    min-height: 100px;
}