/* Dashboard Styles */
.dashboard-page {
    background: var(--bg-primary);
    min-height: 100vh;
}

/* Dashboard Container */
.dashboard-container {
    display: flex;
    padding-top: 60px;
    min-height: calc(100vh - 60px);
}

/* Sidebar */
.dashboard-sidebar {
    width: 250px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(var(--primary-rgb), 0.1);
    padding: 2rem 0;
    position: fixed;
    height: calc(100vh - 60px);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(var(--primary-rgb), 0.1);
}

.sidebar-link.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Main Content */
.dashboard-main {
    flex: 1;
    margin-left: 250px;
    padding: 2rem;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 2rem;
}

.welcome-header {
    margin-bottom: 2rem;
}

.welcome-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 20px 40px -20px rgba(var(--primary-rgb), 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.verified {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.stat-icon.pending {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
}

.stat-icon.rejected {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: var(--text-secondary);
}

/* Activity Timeline */
.activity-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding-left: 1rem;
    position: relative;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    padding: 1rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

.timestamp {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Quick Actions */
.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 20px 40px -20px rgba(var(--primary-rgb), 0.2);
}

.action-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.action-card h3 {
    margin-bottom: 1rem;
}

.action-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-sidebar {
        width: 80px;
    }

    .sidebar-link span {
        display: none;
    }

    .dashboard-main {
        margin-left: 80px;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: static;
        padding: 1rem;
    }

    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 0;
    }

    .sidebar-link {
        padding: 0.5rem;
    }

    .dashboard-main {
        margin-left: 0;
        padding: 1rem;
    }

    .quick-stats {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.welcome-section,
.activity-section,
.quick-actions {
    animation: fadeIn 0.5s ease-out forwards;
}
