/* ============================================
   DOCUMENTS FORM - ADMIN PANEL
   ============================================ */

.documents-form-container {
    padding: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.card-header h5 {
    margin: 0;
    font-size: 1.25rem;
}

/* Section Headers */
.border-bottom {
    border-bottom: 2px solid #e9ecef !important;
}

h6 i {
    font-size: 0.9rem;
}

/* Form Controls */
.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    padding: 0.5rem 0.75rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.form-text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Form Switch */
.form-check-input {
    width: 3em;
    height: 1.5em;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #4A90E2;
    border-color: #4A90E2;
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
}

.btn-primary {
    background-color: #4A90E2;
    border-color: #4A90E2;
}

.btn-primary:hover {
    background-color: #357ABD;
    border-color: #357ABD;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .documents-form-container {
        padding: 1rem;
    }
    
    .card-header h5 {
        font-size: 1.1rem;
    }
    
    h6 {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .d-flex.gap-2 {
        flex-direction: column;
        gap: 0 !important;
    }
    
    .ms-auto {
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .documents-form-container {
        padding: 0.75rem;
    }
    
    .card-header h5 {
        font-size: 1rem;
    }
    
    .form-control,
    .form-select {
        font-size: 0.9rem;
    }
}

