        .container {
            max-width: 900px;
        }
        .progress-container {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
        }
        .custom-progress {
            height: 8px;
            background: #e9ecef;
            border-radius: 10px;
            position: relative;
            margin: 30px 0;
        }
        .progress-bar-custom {
            height: 100%;
            background: #234982;
            border-radius: 10px;
            transition: width 0.5s ease;
        }
        .progress-step {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 3px solid #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            color: #6c757d;
            transition: all 0.5s ease;
            z-index: 2;
            cursor: pointer;
        }
        .progress-step.active {
            border-color: #234982;
            background: #234982;
            color: white;
            transform: translate(-50%, -50%) scale(1.2);
        }
        .progress-step.completed {
            border-color: #28a745;
            background: #28a745;
            color: white;
        }
        .progress-step-label {
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 12px;
            font-weight: 600;
            color: #6c757d;
            white-space: nowrap;
            max-width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: all 0.3s ease;
        }
        .progress-step.active + .progress-step-label {
            color: #234982;
            font-size: 13px;
        }
        .question-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .question-title {
            font-size: 24px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 25px;
        }
        .question-text {
            font-size: 18px;
            color: #4a5568;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .form-check {
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
            cursor: pointer;
        }
        .form-check:hover {
            background: #f7fafc;
            border-color: #cbd5e0;
        }
        .form-check-input:checked ~ .form-check-label {
            color: #234982;
            font-weight: 600;
        }
        .form-check-input {
            width: 20px;
            height: 20px;
            margin-top: 0.25em;
            cursor: pointer;
        }
        .form-check-input:checked {
            background-color: #234982;
            border-color: #234982;
        }
        .form-check-label {
            font-size: 16px;
            color: #4a5568;
            cursor: pointer;
            margin-left: 10px;
            width: 100%;
        }
        .btn-next, .btn-prev {
            padding: 12px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .btn-next {
            background: #234982;
            border: none;
            color: white;
        }
        .btn-next:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        .btn-next:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        .btn-prev {
            background: white;
            border: 2px solid #e2e8f0;
            color: #4a5568;
        }
        .btn-prev:hover {
            background: #f7fafc;
            border-color: #cbd5e0;
        }
        
        /* Yangi Natijalar Dizayni */
        .result-container {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            animation: fadeIn 0.5s ease;
        }
        
        .overall-score-section {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .overall-score-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
        }
        
        .overall-score-display {
            display: inline-block;
            padding: 25px 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            margin-bottom: 15px;
            border: 2px solid #dee2e6;
        }
        
        .overall-score-number {
            font-size: 64px;
            font-weight: 800;
            color: #234982;
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .overall-score-grade {
            font-size: 48px;
            font-weight: 700;
            color: #dc2626; /* G bahosi uchun qizil */
            margin-bottom: 5px;
        }
        
        .overall-score-label {
            font-size: 18px;
            color: #6c757d;
            font-weight: 500;
        }
        
        .rating-scale-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .rating-scale-title {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .rating-scale-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .rating-scale-table th {
            background-color: #234982;
            color: white;
            font-weight: 600;
            padding: 18px 15px;
            text-align: center;
            font-size: 16px;
            border: none;
        }
        
        .rating-scale-table td {
            padding: 16px 15px;
            border-bottom: 1px solid #e9ecef;
            font-size: 15px;
            text-align: center;
        }
        
        .rating-scale-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .rating-scale-table tr:hover {
            background-color: #e9ecef;
        }
        
        .grade-cell {
            font-weight: 700;
            font-size: 18px;
        }
        
        .category-results-section {
            margin-bottom: 40px;
        }
        
        .category-results-title {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .category-results-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .category-result-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        
        .category-result-card:hover {
            border-color: #234982;
            box-shadow: 0 6px 12px rgba(35, 73, 130, 0.1);
            transform: translateY(-3px);
        }
        
        .category-name {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.4;
            min-height: 45px;
        }
        
        .category-score {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
        }
        
        .score-value {
            font-size: 32px;
            font-weight: 700;
            color: #234982;
        }
        
        .score-label {
            font-size: 14px;
            color: #6c757d;
            background: #f8f9fa;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 500;
        }
        
        .total-score-section {
            background: linear-gradient(135deg, #234982 0%, #1a365d 100%);
            border-radius: 12px;
            padding: 25px;
            margin-top: 10px;
        }
        
        .total-score-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }
        
        .total-score-label {
            font-size: 20px;
            font-weight: 600;
        }
        
        .total-score-value {
            font-size: 48px;
            font-weight: 800;
        }
        
        .result-actions {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #e9ecef;
        }
        
        /* Radio button uchun maxsus style */
        .radio-item {
            position: relative;
        }
        
        .double-click-hint {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: #6c757d;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .radio-item:hover .double-click-hint {
            opacity: 0.7;
        }

        #logo {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            max-width: 500px;
            margin: 10px auto;
        }

        #logo a {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: inherit;
            width: 100%;
        }

        .logo-main {
            width: 50px;
            height: 50px;
            padding: 6px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.25);
            flex-shrink: 0;
        }

        #logo h6 {
            color: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.3;
            margin: 0;
            text-align: left;
            flex: 1;
        }

        .logo-scroll, .logo-mobile {
            display: none;
        }

        /* Mobil uchun */
        @media (max-width: 768px) {
            #logo {
                padding: 10px 15px;
                max-width: 90%;
            }
            
            .logo-main {
                width: 45px;
                height: 45px;
            }
            
            #logo h6 {
                font-size: 12px;
                line-height: 1.2;
            }
            
            .overall-score-number {
                font-size: 48px;
            }
            
            .overall-score-grade {
                font-size: 36px;
            }
            
            .category-results-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .total-score-value {
                font-size: 36px;
            }
            
            .total-score-label {
                font-size: 18px;
            }
            
            .double-click-hint {
                display: none;
            }
            
            .rating-scale-table th,
            .rating-scale-table td {
                padding: 12px 10px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .overall-score-display {
                padding: 20px 30px;
            }
            
            .overall-score-number {
                font-size: 40px;
            }
            
            .overall-score-grade {
                font-size: 32px;
            }
            
            .score-value {
                font-size: 28px;
            }
        }