 .alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: overlayFadeIn 0.6s ease-out forwards;
}

.alert-modal {
    background: linear-gradient(135deg, #ff3d3d 0%, #c62828 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(198, 40, 40, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    animation: modalSlideIn 0.6s ease-out 0.3s forwards;
    position: relative;
    overflow: hidden;
    margin: 20px;
}

.alert-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff3d3d, #c62828);
    animation: shimmer 2s infinite;
    background-size: 200% 100%;
}

.alert-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1.5s ease-in-out infinite;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.alert-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.alert-message {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.alert-message strong {
    color: #ffeb3b;
    font-weight: bold;
}

.alert-confirm-btn {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    min-width: 180px;
}

.alert-confirm-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.alert-confirm-btn:active {
    transform: translateY(0) scale(0.98);
}

.alert-confirm-btn i {
    font-size: 1.2rem;
}

/* انیمیشن‌های هشدار */
@keyframes overlayFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    70% {
        transform: scale(1.02) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* انیمیشن خروج هشدار */
.alert-overlay.fade-out {
    animation: overlayFadeOut 0.5s ease-in forwards;
}

.alert-modal.fade-out {
    animation: modalSlideOut 0.5s ease-in forwards;
}

@keyframes overlayFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes modalSlideOut {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
}

@supports not (backdrop-filter: blur(10px)) {
    .alert-overlay {
        background: rgba(0, 0, 0, 0.95);
    }
}
        
        .alert-modal {
            background: linear-gradient(135deg, #ff3d3d 0%, #c62828 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            text-align: center;
            box-shadow: 
                0 20px 60px rgba(198, 40, 40, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            transform: scale(0.8) translateY(50px);
            opacity: 0;
            animation: modalSlideIn 0.6s ease-out 0.3s forwards;
            position: relative;
            overflow: hidden;
            margin: 20px;
        }
        
        .alert-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #ff3d3d, #c62828);
            animation: shimmer 2s infinite;
            background-size: 200% 100%;
        }
        
        .alert-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            animation: bounce 1.5s ease-in-out infinite;
            color: #fff;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .alert-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: bold;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .alert-message {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }
        
        .alert-message strong {
            color: #ffeb3b;
            font-weight: bold;
        }
        
        .alert-confirm-btn {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 
                0 5px 20px rgba(0, 0, 0, 0.3),
                0 0 0 2px rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 0 auto;
            min-width: 180px;
        }
        
        .alert-confirm-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.4),
                0 0 0 2px rgba(255, 255, 255, 0.2);
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
        }
        
        .alert-confirm-btn:active {
            transform: translateY(0) scale(0.98);
        }
        
        .alert-confirm-btn i {
            font-size: 1.2rem;
        }
        
        /* انیمیشن‌های هشدار */
        @keyframes overlayFadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
        
        @keyframes modalSlideIn {
            0% {
                opacity: 0;
                transform: scale(0.8) translateY(50px);
            }
            70% {
                transform: scale(1.02) translateY(-5px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }
        
        /* انیمیشن خروج هشدار */
        .alert-overlay.fade-out {
            animation: overlayFadeOut 0.5s ease-in forwards;
        }
        
        .alert-modal.fade-out {
            animation: modalSlideOut 0.5s ease-in forwards;
        }
        
        @keyframes overlayFadeOut {
            0% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }
        
        @keyframes modalSlideOut {
            0% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
            100% {
                opacity: 0;
                transform: scale(0.8) translateY(-50px);
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Vazirmatn, Tahoma, Arial, sans-serif;
        }
        
        :root {
            --primary: #0c1b2e;
            --secondary: #07121b;
            --accent: #0ea5a0;
            --accent-dark: #08716d;
            --text: #e6eef6;
            --text-muted: #9fb0c3;
            --card-bg: #081426;
            --success: #2ecc71;
            --warning: #ffd4a3;
            --danger: #e74c3c;
        }
        
        body {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .logo-text p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .header-buttons {
            display: flex;
            gap: 10px;
        }
        
        .admin-btn, .status-btn {
            background: var(--accent);
            color: var(--secondary);
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .admin-btn:hover, .status-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }
        
        .status-btn {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
        }
        
        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .tab {
            background: rgba(255, 255, 255, 0.05);
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            color: var(--text);
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }
        
        .tab.active {
            background: var(--accent);
            color: var(--secondary);
        }
        
        .tab:hover:not(.active) {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .recruitment-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .recruitment-card h2 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .recruitment-card h2 i {
            font-size: 1.6rem;
        }
        
        .section {
            margin-bottom: 20px;
        }
        
        .section h3 {
            color: var(--warning);
            margin-bottom: 10px;
            font-size: 1.1rem;
            border-right: 3px solid var(--warning);
            padding-right: 10px;
        }
        
        .benefits-list, .conditions-list {
            padding-right: 20px;
        }
        
        .benefits-list li, .conditions-list li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .benefits-list li:before {
            content: "✓";
            color: var(--success);
            margin-left: 8px;
            font-weight: bold;
        }
        
        .conditions-list li:before {
            content: "•";
            color: var(--accent);
            margin-left: 8px;
            font-weight: bold;
        }
        
        .application-form {
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--text-muted);
        }
        
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--accent);
            color: var(--secondary);
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s;
            width: 100%;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            background: var(--accent-dark);
        }
        
        .form-row {
            display: flex;
            gap: 15px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .modal-content {
            background: var(--card-bg);
            border-radius: 12px;
            width: 100%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            left: 15px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .modal h2 {
            color: var(--accent);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .admin-panel, .status-panel {
            display: none;
        }
        
        .admin-panel.active, .status-panel.active {
            display: block;
        }
        
        .back-btn {
            background: var(--text-muted);
            color: var(--secondary);
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .applicants-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .applicants-table th, .applicants-table td {
            padding: 12px 15px;
            text-align: right;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .applicants-table th {
            background: rgba(14, 165, 160, 0.2);
            color: var(--accent);
            font-weight: bold;
        }
        
        .applicants-table tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        
        .status-badge {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .status-pending {
            background: rgba(255, 212, 163, 0.2);
            color: var(--warning);
        }
        
        .status-approved {
            background: rgba(46, 204, 113, 0.2);
            color: var(--success);
        }
        
        .status-rejected {
            background: rgba(231, 76, 60, 0.2);
            color: var(--danger);
        }
        
        .empty-state {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-muted);
        }
        
        .empty-state i {
            font-size: 3rem;
            margin-bottom: 15px;
            opacity: 0.5;
        }
        
        .interview-question {
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }
        
        .interview-question:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }
        
        .interview-question h4 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .interview-question h4:before {
            content: "?";
            background: var(--accent);
            color: var(--secondary);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        .interview-question textarea {
            min-height: 120px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s;
            font-size: 0.95rem;
            line-height: 1.6;
            padding: 12px;
        }
        
        .interview-question textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: 0 0 0 2px rgba(14, 165, 160, 0.2);
        }
        
        .progress-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .progress {
            height: 100%;
            background: var(--accent);
            border-radius: 3px;
            transition: width 0.3s;
        }
        
        .interview-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
        }
        
        .nav-btn {
            background: var(--accent);
            color: var(--secondary);
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .nav-btn:hover {
            background: var(--accent-dark);
        }
        
        .nav-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
        }
        
        .interview-step {
            display: none;
        }
        
        .interview-step.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        .action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .action-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .approve-btn {
            background: var(--success);
            color: white;
        }
        
        .reject-btn {
            background: var(--danger);
            color: white;
        }
        
        .application-status-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .status-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .status-details {
            background: rgba(255, 255, 255, 0.03);
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
        }
        
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .header-buttons {
                width: 100%;
                justify-content: center;
            }
            
            .tabs {
                justify-content: center;
            }
            
            .interview-navigation {
                flex-direction: column;
                gap: 10px;
            }
            
            .nav-btn {
                width: 100%;
            }
            
            .action-buttons {
                flex-direction: column;
            }
        }