/* Admin Dashboard Styles */

/* CSS Variables for Admin Dashboard */
:root {
   
}

.admin-container {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.sidebar-header h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav .nav-item {
    margin: 0;
}

.sidebar-nav .nav-item a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav .nav-item a:hover,
.sidebar-nav .nav-item.active a {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-gold);
    color: var(--primary-gold);
}

.sidebar-nav .nav-item a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
    background: var(--light-gray);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-gold);
}

.page-header h1 {
    color: var(--deep-blue);
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.page-header p {
    color: var(--text-gray);
    margin: 5px 0 0 0;
}

.stats-grid {
    display: grid;
  
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.stat-icon i {
    font-size: 24px;
    color: var(--white);
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 0 0 5px 0;
}

.stat-content p {
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
}

.quick-actions {
    display: grid;
   
    gap: 15px;
    margin-bottom: 30px;
}

.action-btn {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--dark-blue), var(--deep-blue));
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.table-container {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9rem;
}

.data-table tbody tr:hover {
    background: var(--light-gray);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--dark-gray);
    border: 1px solid var(--text-gray);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-gray);
    color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #218838, #1ea085);
}

.reports-grid {
    display: grid;
   
    gap: 20px;
}

.report-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.report-card h3 {
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 20px 25px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.close {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.form-row {
    display: grid;
  
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
        margin-bottom: 20px;
    }
    
    .admin-main {
        margin-left: 0;
        padding: 20px;
    }
    
    .stats-grid {
       
    }
    
    .quick-actions {
      
    }
    
    .form-row {
       
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .reports-grid {
    
    }
}

/* Additional Admin Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    padding: 15px 20px;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-gold);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #28a745;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
    color: #28a745;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-visitor {
    background: #fff3cd;
    color: #856404;
}

.status-working {
    background: #d4edda;
    color: #155724;
}

.status-maintenance {
    background: #fff3cd;
    color: #856404;
}

.status-damaged {
    background: #f8d7da;
    color: #721c24;
}

.table-actions {
    display: flex;
    gap: 8px;
}

.table-actions button {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.edit-btn {
    background: var(--primary-gold);
    color: var(--white);
}

.edit-btn:hover {
    background: var(--secondary-gold);
}

.delete-btn {
    background: #dc3545;
    color: var(--white);
}

.delete-btn:hover {
    background: #c82333;
}

/* Form control focus styles */
.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Button hover effects */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--dark-blue), var(--deep-blue));
}

/* Table hover effects */
.data-table tbody tr:hover {
    background: var(--light-gray);
}

/* Modal animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Records Tab Styles */
.records-controls {
    display: flex;
    gap: 15px;
}

.records-tabs {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.records-tab-nav {
    display: flex;
    background: var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.record-tab-btn {
    padding: 15px 25px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.record-tab-btn.active {
    background: var(--white);
    color: var(--deep-blue);
    border-bottom-color: var(--primary-gold);
}

.record-tab-btn:hover {
    background: var(--white);
    color: var(--deep-blue);
}

.record-section {
    display: none;
    padding: 25px;
}

.record-section.active {
    display: block;
}

/* Report Actions */
.report-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Data Management Section */
.data-management-section {
    margin-top: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.data-management-section h3 {
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.data-actions-grid {
    display: grid;
   
    gap: 20px;
}

.data-action-card {
    padding: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.data-action-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.data-action-card h4 {
    color: var(--deep-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.data-action-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Button Styles */
.btn-danger {
    background: #dc3545;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Enhanced Form Styles */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control:invalid {
    border-color: #dc3545;
}

/* Success Message Styles */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message i {
    color: #28a745;
    font-size: 1.2rem;
}

/* Print Styles */
@media print {
    .admin-sidebar,
    .page-header button,
    .records-controls,
    .report-actions,
    .data-management-section,
    .modal,
    .table-actions {
        display: none !important;
    }
    
    .admin-main {
        margin-left: 0 !important;
        padding: 0 !important;
    }
    
    .data-table {
        font-size: 12px !important;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px !important;
    }
}

/* Stats Summary Styles */
.stats-summary {
    display: grid;
    
    gap: 15px;
    margin-top: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer Styles */
.admin-footer {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    margin-top: 50px;
    margin-left: 280px;
    padding: 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
   
    gap: 30px;
    padding: 40px 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 8px;
}

.footer-section p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Adjust main content to accommodate footer */
.admin-main {
    min-height: calc(100vh - 80px - 200px); /* Subtract header and footer height */
}

/* Responsive footer */
@media (max-width: 768px) {
    .admin-footer {
        margin-left: 0;
    }
    
    .footer-content {
        
        gap: 20px;
        padding: 30px 20px 15px;
    }
    
    .footer-bottom {
        padding: 15px 20px;
    }
    
    .admin-main {
        min-height: calc(100vh - 80px - 300px);
    }
}

/* Data Storage Section Styles */
.data-storage-section {
    margin-top: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.data-storage-section h3 {
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.storage-info-grid {
    display: grid;
   
    gap: 20px;
}

.storage-card {
    padding: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.storage-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.storage-card h4 {
    color: var(--deep-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.storage-card h4 i {
    color: var(--primary-gold);
}

.storage-stats {
    margin-bottom: 15px;
}

.storage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.storage-item:last-child {
    border-bottom: none;
}

.storage-item span:first-child {
    font-weight: 500;
    color: var(--text-gray);
}

.storage-item span:last-child {
    font-weight: 600;
    color: var(--deep-blue);
}

.backup-options {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-gold);
}

.security-features {
    margin-bottom: 15px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.security-item i {
    color: var(--primary-gold);
    width: 16px;
}

/* Form Management Styles */
.forms-section {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.forms-section h3 {
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.form-templates-grid {
    display: grid;
   
    gap: 20px;
}

.form-template-card {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-template-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.template-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.template-icon i {
    font-size: 32px;
    color: var(--white);
}

.form-template-card h4 {
    color: var(--deep-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.form-template-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.template-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.template-actions button {
    width: 100%;
    justify-content: center;
}

/* Form Submissions Section */
.form-submissions-section {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-submissions-section h3 {
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.submissions-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.submission-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.submission-filters select {
    padding: 8px 12px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--dark-gray);
    cursor: pointer;
}

.submission-filters select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Online Form Modal Styles */
.large-modal .modal-content {
    max-width: 800px;
    width: 95%;
}

.small-modal .modal-content {
    max-width: 500px;
    width: 90%;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-gray);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-gold);
    color: var(--white);
}

.progress-step.completed .step-number {
    background: #28a745;
    color: var(--white);
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--deep-blue);
    font-weight: 600;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h3 {
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Verification Styles */
.verification-message {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.verification-message i {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.verification-message p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

.verification-form {
    max-width: 400px;
    margin: 0 auto;
}

.verification-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.verification-actions button {
    flex: 1;
}

/* Review Styles */
.review-section {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.review-section h4 {
    color: var(--deep-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-label {
    font-weight: 500;
    color: var(--text-gray);
}

.review-value {
    color: var(--dark-gray);
    font-weight: 600;
}

/* Success Modal Styles */
.verification-success,
.submission-success {
    text-align: center;
    padding: 20px;
}

.verification-success i,
.submission-success i {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.verification-success h3,
.submission-success h3 {
    color: var(--deep-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.verification-success p,
.submission-success p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.submission-details {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.submission-details p {
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
}

.submission-details strong {
    color: var(--deep-blue);
}

/* Status Badges for Submissions */
.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-verified {
    background: #d1ecf1;
    color: #0c5460;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive Design for Form Management */
@media (max-width: 768px) {
    .form-templates-grid {
        
    }
    
    .submissions-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .submission-filters {
        flex-direction: column;
    }
    
    .form-progress {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-progress::before {
        display: none;
    }
    
    .progress-step {
        flex-direction: row;
        gap: 15px;
    }
    
    .step-number {
        margin-bottom: 0;
    }
    
    .verification-actions {
        flex-direction: column;
    }
    
    .template-actions {
        flex-direction: column;
    }
}

/* Modal and Form Scrolling Improvements */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Large modal for online forms */
.large-modal .modal-content {
    max-width: 900px;
    width: 95%;
    max-height: 95vh;
}

/* Small modal for confirmations */
.small-modal .modal-content {
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
}

.modal-header {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 20px 25px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 140px); /* Account for header and footer */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) var(--light-gray);
}

/* Custom scrollbar for modal body */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

/* Scroll handle indicators */
.modal-body::before,
.modal-body::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.modal-body::before {
    top: 10px;
}

.modal-body::after {
    bottom: 10px;
}

.modal-body:hover::before,
.modal-body:hover::after {
    opacity: 1;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
    background: var(--white);
    position: sticky;
    bottom: 0;
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Enhanced form scrolling for large forms */
.form-scroll-container {
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) var(--light-gray);
    position: relative;
}

.form-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.form-scroll-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.form-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

.form-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

/* Scroll progress indicator */
.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
    z-index: 5;
}

/* Enhanced form step scrolling */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.form-step.active {
    display: block;
}

.form-step::-webkit-scrollbar {
    width: 6px;
}

.form-step::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.form-step::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

/* Floating action buttons for long forms */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.floating-action-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced form controls */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--white);
}

/* Enhanced textarea for better scrolling */
textarea.form-control {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
    overflow-y: auto;
}

/* Form section dividers */
.form-section {
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: var(--white);
}

.form-section h4 {
    color: var(--deep-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
}

/* Enhanced button visibility */
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--deep-blue));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.btn-secondary:hover {
    background: var(--text-gray);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
}

.btn-success:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .modal {
        padding: 10px 0;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .large-modal .modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 98vh;
    }
    
    .modal-body {
        max-height: calc(95vh - 120px);
        padding: 20px;
    }
    
    .form-step {
        max-height: 60vh;
    }
    
    .floating-actions {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-action-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-footer button {
        width: 100%;
        justify-content: center;
    }
}

/* High contrast mode for accessibility */
@media (prefers-contrast: high) {
    .modal-body::-webkit-scrollbar-thumb {
        background: var(--dark-gray);
    }
    
    .form-control {
        border-color: var(--dark-gray);
    }
    
    .form-control:focus {
        border-color: var(--deep-blue);
        box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.3);
    }
}

/* Enhanced Admin Form Styles */
.form-scroll-container {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
    position: relative;
}

.form-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.form-scroll-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.form-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

.form-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

.scroll-progress {
    position: sticky;
    top: 0;
    height: 3px;
    background: var(--light-gray);
    border-radius: 2px;
    overflow: hidden;
    z-index: 10;
}

.scroll-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    width: 0%;
    transition: width 0.3s ease;
}

.form-section {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-section:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.form-section h4 {
    color: var(--deep-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
}

.form-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-gold);
    margin-right: 10px;
    border-radius: 2px;
}

.form-row {
    display: grid;
   
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.form-group label.required::after {
    content: ' *';
    color: #e74c3c;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.form-control:hover {
    border-color: var(--secondary-gold);
}

.form-control:invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-control:valid {
    border-color: #27ae60;
}

.form-control:disabled {
    background: var(--light-gray);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Enhanced Select Styling */
.form-control[type="select"] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

/* Enhanced Textarea Styling */
textarea.form-control {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* Form Validation Styles */
.form-group.error .form-control {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group.error .error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.form-group.error .error-message::before {
    content: '⚠';
    margin-right: 5px;
}

.form-group.success .form-control {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-group.success .success-message {
    color: #27ae60;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.form-group.success .success-message::before {
    content: '✓';
    margin-right: 5px;
}

/* Loading States */
.form-control.loading {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Progress Indicator */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-gray);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    background: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.progress-step.active {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    color: var(--white);
}

.progress-step.completed {
    border-color: #27ae60;
    background: #27ae60;
    color: var(--white);
}

/* Enhanced Modal Styles */
.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.modal-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.modal-header h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-gold);
    margin-right: 12px;
    border-radius: 2px;
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    gap: 20px;
}

/* Enhanced Button Styles */
.btn-primary, .btn-secondary, .btn-success, .btn-danger {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--dark-gray);
    border: 2px solid var(--light-gray);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--white);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
        max-height: 60vh;
    }
    
    .modal-footer {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
       
        gap: 15px;
    }
    
    .form-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-primary, .btn-secondary, .btn-success, .btn-danger {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        border-radius: 10px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .form-section h4 {
        font-size: 1rem;
    }
    
    .form-control {
        font-size: 16px;
    }
}

/* Form Animation */
@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    animation: formSlideIn 0.3s ease;
}

.form-section:nth-child(1) { animation-delay: 0.1s; }
.form-section:nth-child(2) { animation-delay: 0.2s; }
.form-section:nth-child(3) { animation-delay: 0.3s; }
.form-section:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced Focus States */
.form-control:focus + label,
.form-group:focus-within label {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Form Help Text */
.help-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.help-text::before {
    content: '💡';
    font-size: 0.8rem;
}

/* Form Field Groups */
.field-group {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.field-group .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Enhanced Select Dropdown */
.form-control[type="select"] option {
    padding: 10px;
    background: var(--white);
    color: var(--dark-gray);
}

.form-control[type="select"] option:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* Form Loading Overlay */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.form-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 11;
    transform: translate(-50%, -50%);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
    border-left: 4px solid var(--primary-gold);
}

.notification-success {
    border-left-color: #27ae60;
}

.notification-error {
    border-left-color: #e74c3c;
}

.notification-info {
    border-left-color: #3498db;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #27ae60;
}

.notification-error .notification-content i {
    color: #e74c3c;
}

.notification-info .notification-content i {
    color: #3498db;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: var(--light-gray);
    color: var(--dark-gray);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-navigation button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.form-navigation .btn-secondary {
    background: var(--light-gray);
    color: var(--dark-gray);
    border: 2px solid var(--light-gray);
}

.form-navigation .btn-secondary:hover {
    background: var(--white);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.form-navigation .btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
}

.form-navigation .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.form-navigation .btn-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--white);
}

.form-navigation .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* Responsive Form Navigation */
@media (max-width: 768px) {
    .modal-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-navigation {
        width: 100%;
        justify-content: space-between;
    }
    
    .form-navigation button {
        flex: 1;
        justify-content: center;
        padding: 12px 15px;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .form-progress {
        padding: 0 10px;
    }
    
    .progress-step {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-navigation button {
        width: 100%;
    }
    
    .progress-step {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}
