  .tvet-dashboard {
            background: white;
            color: #000;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .dashboard-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .dashboard-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 10px;
        }

        .dashboard-subtitle {
            font-size: 1.1rem;
            color: #666;
            font-weight: 400;
        }

        .metrics-section {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 30px;
            text-align: center;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .metric-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .metric-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .circular-progress {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
        }

        .progress-ring {
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            transition: stroke-dasharray 2s ease-in-out;
            fill: transparent;
            stroke-width: 8;
            stroke-linecap: round;
        }

        .progress-bg {
            stroke: #f0f0f0;
        }

        .progress-fill-100 {
            stroke: #ff4444;
            stroke-dasharray: 283 283;
            stroke-dashoffset: 0;
            animation: fillCircle100 2s ease-in-out;
        }

        .progress-fill-98 {
            stroke: #ff6600;
            stroke-dasharray: 283 283;
            stroke-dashoffset: 6;
            animation: fillCircle98 2s ease-in-out;
        }

        .progress-fill-99 {
            stroke: #ff5522;
            stroke-dasharray: 283 283;
            stroke-dashoffset: 3;
            animation: fillCircle99 2s ease-in-out;
        }

        @keyframes fillCircle100 {
            from { stroke-dashoffset: 283; }
            to { stroke-dashoffset: 0; }
        }

        @keyframes fillCircle98 {
            from { stroke-dashoffset: 283; }
            to { stroke-dashoffset: 6; }
        }

        @keyframes fillCircle99 {
            from { stroke-dashoffset: 283; }
            to { stroke-dashoffset: 3; }
        }

        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
        }

        .metric-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 8px;
        }

        .metric-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.4;
        }

        .levels-section {
            margin-top: 50px;
        }

        .levels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .level-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .level-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .level-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff4444, #ff6600);
            animation: slideIn 1.5s ease-out forwards;
        }

        .level-card:nth-child(1)::before {
            animation-delay: 0.2s;
        }

        .level-card:nth-child(2)::before {
            animation-delay: 0.4s;
        }

        .level-card:nth-child(3)::before {
            animation-delay: 0.6s;
        }

        @keyframes slideIn {
            to { left: 0; }
        }

        .level-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #ff4444, #ff6600);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            animation: bounceIn 1s ease-out;
        }

        .level-card:nth-child(1) .level-icon {
            animation-delay: 0.3s;
            animation-fill-mode: both;
        }

        .level-card:nth-child(2) .level-icon {
            animation-delay: 0.5s;
            animation-fill-mode: both;
        }

        .level-card:nth-child(3) .level-icon {
            animation-delay: 0.7s;
            animation-fill-mode: both;
        }

        @keyframes bounceIn {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }

        .level-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 8px;
        }

        .level-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 12px;
        }

        .level-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        .fill-indicator {
            width: 100%;
            height: 6px;
            background: #f0f0f0;
            border-radius: 3px;
            margin-top: 15px;
            overflow: hidden;
        }

        .fill-bar {
            height: 100%;
            background: linear-gradient(90deg, #ff4444, #ff6600);
            border-radius: 3px;
            animation: fillBar 2s ease-out;
        }

        .level-card:nth-child(1) .fill-bar {
            animation-delay: 0.8s;
            animation-fill-mode: both;
        }

        .level-card:nth-child(2) .fill-bar {
            animation-delay: 1s;
            animation-fill-mode: both;
        }

        .level-card:nth-child(3) .fill-bar {
            animation-delay: 1.2s;
            animation-fill-mode: both;
        }

        @keyframes fillBar {
            from { width: 0; }
            to { width: 100%; }
        }

        @media (max-width: 768px) {
            .tvet-dashboard {
                padding: 15px;
            }
            
            .dashboard-title {
                font-size: 2rem;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .levels-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }