.hidden {
    display: none;
}

.review-mode {
    background-color: #f8f9fa;
}

.edit-mode {
    background-color: #fff3cd;
}

.field-disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.status-badge {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

.edit-toggle {
    position: sticky;
    top: 20px;
    z-index: 1000;
}

.form-section {
    margin-bottom: 2rem;
}

.section-header {
    background-color: #007bff;
    color: white;
    padding: 1rem;
    margin-bottom: 0;
    border-radius: 0.375rem 0.375rem 0 0;
}

.section-body {
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    padding: 1.5rem;
}

.info-display {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 2rem;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

/* Passport Photo Upload Styles */
.photo-preview-container {
    text-align: center;
}

.photo-preview {
    width: 200px;
    height: 200px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.photo-preview.has-image {
    border: 2px solid #28a745;
    border-style: solid;
}

.preview-placeholder {
    text-align: center;
    color: #6c757d;
}

.preview-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

#passport-photo {
    border: 2px dashed #007bff;
    border-radius: 8px;
    padding: 1rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

#passport-photo:hover {
    border-color: #0056b3;
    background-color: #e3f2fd;
}

#passport-photo:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-text {
    margin-top: 0.5rem;
}

.form-text small {
    line-height: 1.4;
}