@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

/* Layout */
.vts-app {
    display: flex;
    min-height: 100vh;
    background: #f9fafb;
}

/* Sidebar - Fixed Icons Issue */
.vts-sidebar {
    width: 280px;
    background: #ffffff;
    padding: 30px 0;
    border-right: 1px solid #e5e7eb;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
    position: fixed;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
}

.vts-brand {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    padding: 0 30px 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.vts-sidebar nav {
    padding: 0 20px;
}

.vts-sidebar nav a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 8px;
    border-radius: 12px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 15px;
}

.vts-sidebar nav a:hover {
    background: #f3f4f6;
    color: #4f46e5;
    transform: translateX(5px);
}

.vts-sidebar nav a.active {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    transform: translateX(5px);
}

/* Fixed: Remove SVG icons and use emoji icons instead */
.vts-sidebar nav a::before {
    content: "";
    display: none; /* Remove SVG icons */
}

.vts-sidebar nav a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    font-size: 16px;
    text-align: center;
    opacity: 0.8;
}

/* Dashboard icon */
.vts-sidebar nav a[href*="dashboard"]::after {
    content: "📊";
}

/* Profile icon */
.vts-sidebar nav a[href*="profile"]::after {
    content: "👤";
}

/* Jobs icon */
.vts-sidebar nav a[href*="jobs"]::after {
    content: "💼";
}

/* Applications icon */
.vts-sidebar nav a[href*="applications"]::after {
    content: "📋";
}

/* Payments icon */
.vts-sidebar nav a[href*="payments"]::after {
    content: "💰";
}

/* Exam icon */
.vts-sidebar nav a[href*="exam"]::after {
    content: "📝";
}

/* Notifications icon */
.vts-sidebar nav a[href*="notifications"]::after {
    content: "🔔";
}

/* Help & Support icon */
.vts-sidebar nav a[href*="help-support"]::after {
    content: "❓";
}

/* Active state icons */
.vts-sidebar nav a.active::after {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* Main */
.vts-main {
    flex: 1;
    padding: 40px 50px;
    margin-left: 280px;
    background: #f9fafb;
    min-height: 100vh;
}

/* Header */
.vts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.vts-header-content {
    flex: 1;
}

.vts-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.5px;
}

.vts-sub {
    color: #6b7280;
    font-size: 16px;
    margin-top: 5px;
    font-weight: 400;
}

/* Stats */
.vts-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.vts-stat-card {
    padding: 28px;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vts-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.vts-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.vts-stat-card .label {
    opacity: 0.9;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.vts-stat-card .value {
    font-size: 32px;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: -0.5px;
}

/* Stat Card Colors */
.blue {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
}

.blue::before {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.purple {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.purple::before {
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
}

.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.orange::before {
    background: linear-gradient(90deg, #fdba74, #fb923c);
}

.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.green::before {
    background: linear-gradient(90deg, #86efac, #4ade80);
}

/* Action cards */
.vts-actions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.vts-action-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: #111827;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.vts-action-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vts-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.vts-action-card:hover::after {
    opacity: 1;
}

.vts-action-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.vts-action-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.5;
}

.vts-action-card::before {
    content: "→";
    position: absolute;
    right: 28px;
    top: 32px;
    font-size: 20px;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.vts-action-card:hover::before {
    color: #4f46e5;
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .vts-sidebar {
        width: 240px;
    }
    
    .vts-main {
        margin-left: 240px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .vts-app {
        flex-direction: column;
    }
    
    .vts-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }
    
    .vts-main {
        margin-left: 0;
        padding: 30px 20px;
    }
    
    .vts-stats,
    .vts-actions {
        grid-template-columns: 1fr;
    }
    
    .vts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .vts-user-profile {
        align-self: flex-start;
        width: 100%;
    }
}

/* Scrollbar styling for sidebar */
.vts-sidebar::-webkit-scrollbar {
    width: 6px;
}

.vts-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.vts-sidebar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.vts-sidebar::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
/* Add this rule to ensure no text decoration on the dashboard */
.vts-header h1,
.vts-sub,
.vts-stat-card .label,
.vts-stat-card .value,
.vts-action-card h3,
.vts-action-card p,
.vts-brand {
    text-decoration: none !important;
}

/* Also ensure all links in the main content area have no underline */
.vts-main a,
.vts-action-card {
    text-decoration: none !important;
}

/* Specifically target any dashboard text that might have underline */
.dashboard-text,
.vts-dashboard-text,
[class*="dashboard"] {
    text-decoration: none !important;
}
/* Target the dashboard header specifically */
.vts-header h1 {
    text-decoration: none !important;
    border-bottom: none !important;
    background-image: none !important;
}