/* Admin Panel Styles */
:root {
    --admin-primary: #4A90E2;
    --admin-primary-dark: #357ABD;
    --admin-secondary: #87CEEB;
    --admin-accent: #FF6B6B;
    --admin-success: #28a745;
    --admin-warning: #ffc107;
    --admin-danger: #dc3545;
    --admin-info: #17a2b8;
    --admin-text: #2c3e50;
    --admin-text-light: #6c757d;
    --admin-text-muted: #adb5bd;
    --admin-bg: #ffffff;
    --admin-bg-light: #f8f9fa;
    --admin-bg-dark: #2c3e50;
    --admin-border: #e9ecef;
    --admin-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --admin-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --admin-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --admin-radius: 12px;
    --admin-radius-lg: 20px;
    --admin-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --admin-gradient: linear-gradient(135deg, #4A90E2 0%, #87CEEB 100%);
    --admin-gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* Admin Layout */
.admin-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Admin Sidebar - Professional Modern Design */
.admin-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #1e293b;
    color: white;
    z-index: 1000;
    transition: var(--admin-transition);
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sidebar-header {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.sidebar-logo {
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo .logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(74, 144, 226, 0.3);
    transition: all 0.2s ease;
}

.sidebar-logo .logo-img:hover {
    border-color: rgba(74, 144, 226, 0.5);
}

.sidebar-logo .logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4a90e2 0%, #87ceeb 100%);
    transition: all 0.2s ease;
}

.sidebar-logo .logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

/* Sidebar Navigation - Compact Professional Design */
.sidebar-nav {
    padding: 0.5rem 0;
    flex-grow: 1;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

.nav-section {
    margin-bottom: 0.75rem;
    position: relative;
}

.nav-section::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    right: 1rem;
    left: 1rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.nav-section:last-child::after {
    display: none;
}

.nav-section-title {
    padding: 0.5rem 1rem 0.375rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    margin: 0.125rem 0.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #4a90e2;
    border-radius: 0 2px 2px 0;
    transition: height 0.2s ease;
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.nav-item.active {
    background: rgba(74, 144, 226, 0.2);
    color: white;
    font-weight: 600;
}

.nav-item.active::before {
    height: 100%;
}

.nav-item i {
    width: 18px;
    margin-left: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.nav-item:hover i {
    opacity: 1;
    color: #87ceeb;
}

.nav-item.active i {
    opacity: 1;
    color: #87ceeb;
}

.nav-item span {
    font-weight: inherit;
    position: relative;
    z-index: 1;
    flex: 1;
}

.nav-indicator {
    display: none;
}


/* Main Content */
.admin-main {
    margin-right: 260px;
    min-height: 100vh;
    transition: var(--admin-transition);
}

/* Admin Header - Compact Design */
.admin-header {
    background: white;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--admin-text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--admin-radius);
    transition: var(--admin-transition);
}

.sidebar-toggle:hover {
    background: var(--admin-bg-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--admin-text);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-btn {
    position: relative;
    background: none;
    border: none;
    padding: 0.75rem;
    border-radius: var(--admin-radius);
    color: var(--admin-text-light);
    cursor: pointer;
    transition: var(--admin-transition);
}

.header-btn:hover {
    background: var(--admin-bg-light);
    color: var(--admin-text);
}

.notification-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: var(--admin-danger);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--admin-radius);
    cursor: pointer;
    transition: var(--admin-transition);
}

.user-menu-btn:hover {
    background: var(--admin-bg-light);
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    background: var(--admin-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

/* Admin Content */
.admin-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Flash Messages */
.flash-messages {
    margin-bottom: 2rem;
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--admin-radius);
    margin-bottom: 1rem;
    box-shadow: var(--admin-shadow);
    animation: slideInDown 0.5s ease;
}

.flash-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-right: 4px solid var(--admin-success);
}

.flash-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-right: 4px solid var(--admin-danger);
}

.flash-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    border-right: 4px solid var(--admin-warning);
}

.flash-info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
    border-right: 4px solid var(--admin-info);
}

.flash-icon {
    font-size: 1.2rem;
}

.flash-content {
    flex: 1;
}

.flash-text {
    font-weight: 500;
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--admin-transition);
}

.flash-close:hover {
    opacity: 1;
}

/* Dashboard Styles */
.admin-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Welcome Section */
.dashboard-welcome {
    background: var(--admin-gradient);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--admin-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--admin-shadow-lg);
    position: relative;
    overflow: hidden;
}

.dashboard-welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="welcome-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23welcome-pattern)"/></svg>');
    animation: float 20s linear infinite;
}

.welcome-content {
    position: relative;
    z-index: 1;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.welcome-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 0 1.5rem;
}

.welcome-stats {
    display: flex;
    gap: 2rem;
}

.welcome-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.welcome-illustration {
    position: relative;
    z-index: 1;
    font-size: 8rem;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

/* Statistics Cards */
.dashboard-stats {
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1.25rem;
    border-radius: var(--admin-radius-lg);
    box-shadow: var(--admin-shadow);
    transition: var(--admin-transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--admin-shadow-lg);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--admin-gradient);
}

.stat-primary::before { background: linear-gradient(135deg, var(--admin-primary), var(--admin-secondary)); }
.stat-success::before { background: linear-gradient(135deg, var(--admin-success), #20c997); }
.stat-warning::before { background: linear-gradient(135deg, var(--admin-warning), #fd7e14); }
.stat-danger::before { background: linear-gradient(135deg, var(--admin-danger), #e83e8c); }

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--admin-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.75rem;
}

.stat-primary .stat-icon { background: var(--admin-primary); }
.stat-success .stat-icon { background: var(--admin-success); }
.stat-warning .stat-icon { background: var(--admin-warning); }
.stat-danger .stat-icon { background: var(--admin-danger); }

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: var(--admin-text);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--admin-text-light);
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--admin-success);
    font-weight: 500;
}

.stat-chart {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 50px;
    height: 25px;
    opacity: 0.3;
}

/* Responsive for smaller screens */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Quick Actions */
.dashboard-actions {
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--admin-text);
    margin: 0 0 0.5rem;
}

.section-description {
    color: var(--admin-text-light);
    margin: 0;
    font-size: 1rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: var(--admin-radius-lg);
    box-shadow: var(--admin-shadow);
    text-decoration: none;
    color: inherit;
    transition: var(--admin-transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--admin-shadow-lg);
    color: inherit;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--admin-gradient);
}

.action-primary::before { background: linear-gradient(135deg, var(--admin-primary), var(--admin-secondary)); }
.action-success::before { background: linear-gradient(135deg, var(--admin-success), #20c997); }
.action-info::before { background: linear-gradient(135deg, var(--admin-info), #6f42c1); }
.action-warning::before { background: linear-gradient(135deg, var(--admin-warning), #fd7e14); }
.action-danger::before { background: linear-gradient(135deg, var(--admin-danger), #e83e8c); }
.action-secondary::before { background: linear-gradient(135deg, #6c757d, #495057); }

.action-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--admin-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.action-primary .action-icon { background: var(--admin-primary); }
.action-success .action-icon { background: var(--admin-success); }
.action-info .action-icon { background: var(--admin-info); }
.action-warning .action-icon { background: var(--admin-warning); }
.action-danger .action-icon { background: var(--admin-danger); }
.action-secondary .action-icon { background: #6c757d; }

.action-content {
    flex: 1;
}

.action-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--admin-text);
}

.action-content p {
    color: var(--admin-text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.action-arrow {
    color: var(--admin-text-light);
    font-size: 1.2rem;
    transition: var(--admin-transition);
}

.action-card:hover .action-arrow {
    transform: translateX(-5px);
    color: var(--admin-primary);
}

/* Recent Activity */
.dashboard-activity {
    margin-bottom: 2rem;
}

.activity-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.activity-card {
    background: white;
    border-radius: var(--admin-radius-lg);
    box-shadow: var(--admin-shadow);
    overflow: hidden;
}

.activity-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--admin-text);
}

.activity-link {
    color: var(--admin-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--admin-transition);
}

.activity-link:hover {
    color: var(--admin-primary-dark);
}

.activity-content {
    padding: 1.5rem 2rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--admin-border);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-avatar {
    width: 40px;
    height: 40px;
    background: var(--admin-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.activity-details {
    flex: 1;
}

.activity-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--admin-text);
}

.activity-details p {
    font-size: 0.9rem;
    color: var(--admin-text-light);
    margin: 0 0 0.25rem;
}

.activity-time {
    font-size: 0.8rem;
    color: var(--admin-text-muted);
}

.activity-status {
    flex-shrink: 0;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-read {
    background: rgba(40, 167, 69, 0.1);
    color: var(--admin-success);
}

.status-unread {
    background: rgba(220, 53, 69, 0.1);
    color: var(--admin-danger);
}

.status-indicator {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-online {
    background: rgba(40, 167, 69, 0.1);
    color: var(--admin-success);
}

/* System Info */
.system-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--admin-bg-light);
    border-radius: var(--admin-radius);
}

.info-item i {
    width: 20px;
    color: var(--admin-primary);
}

.info-item span {
    font-size: 0.9rem;
    color: var(--admin-text);
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--admin-text-light);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    margin: 0;
    font-size: 1rem;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .admin-main {
        margin-right: 0;
    }
    
    .admin-sidebar {
        width: 260px;
        transform: translateX(100%);
        box-shadow: -2px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .admin-sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .sidebar-overlay.open {
        display: block;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-content {
        padding: 1rem;
    }
    
    .admin-header {
        padding: 1rem;
    }
    
    .dashboard-welcome {
        padding: 2rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-stats {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .action-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .activity-header {
        padding: 1rem;
    }
    
    .activity-content {
        padding: 1rem;
    }
}

/* Animations */
@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
    }
}

/* Staggered animation for nav items */
.nav-section .nav-item:nth-child(1) { animation-delay: 0.05s; }
.nav-section .nav-item:nth-child(2) { animation-delay: 0.1s; }
.nav-section .nav-item:nth-child(3) { animation-delay: 0.15s; }
.nav-section .nav-item:nth-child(4) { animation-delay: 0.2s; }
.nav-section .nav-item:nth-child(5) { animation-delay: 0.25s; }
.nav-section .nav-item:nth-child(6) { animation-delay: 0.3s; }
.nav-section .nav-item:nth-child(7) { animation-delay: 0.35s; }
.nav-section .nav-item:nth-child(8) { animation-delay: 0.4s; }
.nav-section .nav-item:nth-child(9) { animation-delay: 0.45s; }
.nav-section .nav-item:nth-child(10) { animation-delay: 0.5s; }

/* Modern Login Page Styles */
.login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Vazirmatn', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 10%;
    animation-delay: 15s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    animation-delay: 7s;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.8) 0%, 
        rgba(118, 75, 162, 0.8) 50%,
        rgba(74, 144, 226, 0.8) 100%);
}

/* Login Container */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.8s ease;
}

/* Laptop/Desktop Responsive */
@media (min-width: 1024px) {
    .login-container {
        max-width: 600px;
        min-height: auto;
    }
    
    .login-page {
        padding: 1rem;
    }
    
    .login-header {
        padding: 2rem 3rem 1.5rem;
    }
    
    .login-form-section {
        padding: 1.5rem 3rem;
    }
    
    .login-footer {
        padding: 1.5rem 3rem;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 2.2rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
    
    .first-user-banner {
        padding: 1rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .banner-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .banner-content h3 {
        font-size: 1.1rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .input-container input {
        padding: 1rem 3.5rem 1rem 1rem;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .login-form {
        gap: 1rem;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .login-container {
        max-width: 700px;
    }
    
    .login-header {
        padding: 2.5rem 4rem 2rem;
    }
    
    .login-form-section {
        padding: 2rem 4rem;
    }
    
    .login-footer {
        padding: 2rem 4rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-page {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .login-container {
        max-width: 100%;
        margin: 0;
        border-radius: 20px;
        min-height: calc(100vh - 2rem);
    }
    
    .login-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .login-form-section {
        padding: 1.5rem;
    }
    
    .login-footer {
        padding: 1.5rem;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
    
    .login-title {
        font-size: 2rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
    
    .first-user-banner {
        padding: 1.25rem;
        margin-top: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .banner-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .input-container input {
        padding: 1.1rem 3.5rem 1.1rem 1rem;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-link {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .login-page {
        padding: 0.5rem;
        padding-top: 1rem;
    }
    
    .login-container {
        border-radius: 16px;
        min-height: calc(100vh - 1rem);
    }
    
    .login-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .login-form-section {
        padding: 1rem;
    }
    
    .login-footer {
        padding: 1rem;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-subtitle {
        font-size: 0.95rem;
    }
    
    .first-user-banner {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .banner-content h3 {
        font-size: 1rem;
    }
    
    .banner-content p {
        font-size: 0.85rem;
    }
    
    .input-container input {
        padding: 1rem 3rem 1rem 1rem;
        font-size: 0.95rem;
    }
    
    .login-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .alert {
        padding: 0.75rem 1rem;
        margin-bottom: 0.75rem;
    }
    
    .alert-icon {
        font-size: 1rem;
    }
    
    .alert-message {
        font-size: 0.9rem;
    }
}

/* Header Section */
.login-header {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(135, 206, 235, 0.1));
}

.logo-section {
    margin-bottom: 2rem;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--admin-primary);
}

.logo-sub {
    font-size: 1rem;
    color: var(--admin-text-light);
    font-weight: 500;
}

.header-text {
    margin-top: 1rem;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--admin-text);
    margin: 0 0 0.5rem;
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: var(--admin-text-light);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* First User Banner */
.first-user-banner {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.banner-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

.banner-content h3 {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.banner-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Form Section */
.login-form-section {
    padding: 2rem 2.5rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Alert Styles */
.alert-container {
    margin-bottom: 1rem;
}

.alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    animation: slideInDown 0.5s ease;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-right: 4px solid var(--admin-success);
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-right: 4px solid var(--admin-danger);
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    border-right: 4px solid var(--admin-warning);
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
    border-right: 4px solid var(--admin-info);
}

.alert-icon {
    font-size: 1.2rem;
}

.alert-content {
    flex: 1;
}

.alert-message {
    font-weight: 500;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--admin-transition);
}

.alert-close:hover {
    opacity: 1;
}

/* Form Groups */
.form-group {
    position: relative;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 1rem;
    color: var(--admin-text-light);
    font-size: 1.1rem;
    z-index: 2;
    transition: var(--admin-transition);
}

.input-container input {
    width: 100%;
    padding: 1.25rem 3.5rem 1.25rem 1rem;
    border: 2px solid var(--admin-border);
    border-radius: 16px;
    font-size: 1rem;
    background: white;
    color: var(--admin-text);
    transition: var(--admin-transition);
    font-family: 'Vazirmatn', sans-serif;
}

.input-container input:focus {
    outline: none;
    border-color: var(--admin-primary);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.input-container input:focus + .input-label,
.input-container.focused .input-label {
    transform: translateY(-2.5rem) scale(0.85);
    color: var(--admin-primary);
}

.input-label {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--admin-text-light);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--admin-transition);
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

.password-toggle {
    position: absolute;
    left: 1rem;
    background: none;
    border: none;
    color: var(--admin-text-light);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--admin-transition);
    z-index: 2;
}

.password-toggle:hover {
    color: var(--admin-primary);
}

/* Form Options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--admin-border);
    border-radius: 4px;
    position: relative;
    transition: var(--admin-transition);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: var(--admin-primary);
    border-color: var(--admin-primary);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--admin-text-light);
    font-weight: 500;
}

/* Login Button */
.login-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-secondary));
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--admin-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    font-family: 'Vazirmatn', sans-serif;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Footer Section */
.login-footer {
    padding: 2rem 2.5rem;
    background: rgba(248, 249, 250, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--admin-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--admin-transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-link:hover {
    color: var(--admin-primary);
    background: rgba(74, 144, 226, 0.1);
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--admin-text-muted);
}

/* Particles Animation */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }

/* Additional Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Settings Pages Styles */
.settings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.settings-section {
    background: white;
    border-radius: var(--admin-radius-lg);
    box-shadow: var(--admin-shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-secondary));
    color: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.settings-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--admin-text);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--admin-border);
    border-radius: var(--admin-radius);
    font-size: 0.95rem;
    transition: var(--admin-transition);
    font-family: 'Vazirmatn', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--admin-primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-control[type="checkbox"] {
    width: auto;
    margin-left: 0.5rem;
}

.features-list {
    margin-bottom: 1.5rem;
}

.feature-item {
    background: var(--admin-bg-light);
    border: 1px solid var(--admin-border);
    border-radius: var(--admin-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--admin-border);
}

.feature-header h4 {
    margin: 0;
    color: var(--admin-text);
    font-size: 1.1rem;
    font-weight: 600;
}

.settings-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--admin-border);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--admin-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--admin-transition);
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--admin-shadow-lg);
}

.btn-secondary {
    background: var(--admin-bg-light);
    color: var(--admin-text);
    border: 2px solid var(--admin-border);
}

.btn-secondary:hover {
    background: var(--admin-border);
    color: var(--admin-text);
}

.btn-danger {
    background: var(--admin-danger);
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.page-header {
    background: white;
    border-radius: var(--admin-radius-lg);
    box-shadow: var(--admin-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.page-title h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--admin-text);
}

.page-title p {
    margin: 0;
    color: var(--admin-text-light);
    font-size: 1.1rem;
}

/* Additional Settings Styles */
.stats-list, .values-list, .team-list {
    margin-bottom: 1.5rem;
}

.stat-item, .value-item, .team-item {
    background: var(--admin-bg-light);
    border: 1px solid var(--admin-border);
    border-radius: var(--admin-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.stat-header, .value-header, .team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--admin-border);
}

.stat-header h4, .value-header h4, .team-header h4 {
    margin: 0;
    color: var(--admin-text);
    font-size: 1.1rem;
    font-weight: 600;
}

.form-text {
    font-size: 0.85rem;
    color: var(--admin-text-light);
    margin-top: 0.25rem;
    display: block;
}

/* Grid Layouts */
.contact-info-grid, .social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-list {
    margin-bottom: 1.5rem;
}

.faq-item {
    background: var(--admin-bg-light);
    border: 1px solid var(--admin-border);
    border-radius: var(--admin-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--admin-border);
}

.faq-header h4 {
    margin: 0;
    color: var(--admin-text);
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-texts-grid, .button-texts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.priority-list {
    margin-top: 1rem;
}

.priority-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: var(--admin-bg-light);
    border-radius: var(--admin-radius);
}

.priority-item label {
    min-width: 100px;
    margin: 0;
    font-weight: 500;
}

.priority-item input[type="range"] {
    flex: 1;
    margin: 0;
}

.priority-item span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--admin-primary);
}

.system-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--admin-bg-light);
    border-radius: var(--admin-radius);
    border: 1px solid var(--admin-border);
}

.info-item label {
    font-weight: 600;
    color: var(--admin-text);
    margin: 0;
}

.info-item span {
    color: var(--admin-text-light);
    font-weight: 500;
}

/* Users Management Styles */
.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--admin-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: var(--admin-text);
    font-size: 0.95rem;
}

.user-email {
    font-size: 0.85rem;
    color: var(--admin-text-light);
}

.role-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.role-admin {
    background: rgba(220, 53, 69, 0.1);
    color: var(--admin-danger);
}

.role-editor {
    background: rgba(255, 193, 7, 0.1);
    color: var(--admin-warning);
}

.role-author {
    background: rgba(40, 167, 69, 0.1);
    color: var(--admin-success);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-active {
    background: rgba(40, 167, 69, 0.1);
    color: var(--admin-success);
}

.status-inactive {
    background: rgba(108, 117, 125, 0.1);
    color: var(--admin-text-light);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.bulk-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--admin-bg-light);
    border-radius: var(--admin-radius);
    margin: 1rem 0;
}

.bulk-info {
    font-weight: 600;
    color: var(--admin-text);
}

.bulk-buttons {
    display: flex;
    gap: 0.5rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pagination-info {
    font-weight: 500;
    color: var(--admin-text);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--admin-border);
    color: var(--admin-text);
}

.btn-outline:hover {
    background: var(--admin-border);
    color: var(--admin-text);
}

.btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Date and Time Display */
#currentDate, #currentTime {
    transition: opacity 0.3s ease;
    display: inline-block;
}

#currentDate:hover, #currentTime:hover {
    opacity: 0.8;
}