        :root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
        }
        
      
        /* CGPA Calculator Specific Styles */
        .semester-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        
        .semester-card:hover {
            background-color: #f0f8ff;
        }
        
        .semester-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .semester-title {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .course-row {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background-color: white;
            border-radius: 6px;
            border: 1px solid var(--border-color);
        }
        
        .course-row input, .course-row select {
            margin-right: 10px;
            flex: 1;
        }
        
        .cgpa-result {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-align: center;
            margin: 1rem 0;
        }
        
        .cgpa-chart {
            width: 100%;
            height: 300px;
            background-color: #f8f9fa;
            border-radius: 8px;
            margin: 1.5rem 0;
            padding: 10px;
            border: 1px solid var(--border-color);
        }
        
        .cgpa-timeline {
            display: flex;
            margin-top: 2rem;
            overflow-x: auto;
            padding-bottom: 1rem;
        }
        
        .semester-point {
            flex: 0 0 auto;
            width: 120px;
            text-align: center;
            padding: 1rem;
            margin-right: 1rem;
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .semester-point h4 {
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .semester-point .gpa-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
        }
        
        .semester-point .cgpa-value {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--success-color);
            margin-top: 0.5rem;
        }
        
        .progress-container {
            margin: 1.5rem 0;
        }
        
        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        
        .progress {
            height: 10px;
            border-radius: 5px;
            background-color: #e9ecef;
            overflow: hidden;
        }
        
        .progress-bar {
            background-color: var(--primary-color);
            transition: width 0.5s ease;
        }
        
        /* Authority Guide Styles */
        .authority-guide {
            margin-top: 3rem;
        }
        
 
        
        .guide-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .guide-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(44, 125, 160, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .guide-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .guide-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        .comparison-table th, .comparison-table td {
            padding: 1rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        
        .comparison-table th {
            background-color: var(--light-gray);
            font-weight: 600;
            width: 25%;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: rgba(44, 125, 160, 0.05);
        }
        
        .tip-box {
            background-color: rgba(255, 193, 7, 0.1);
            border-left: 4px solid #ffc107;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        
        .success-box {
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 4px solid #28a745;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .strategy-card {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.3s;
        }
        
        .strategy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .strategy-card h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .strategy-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .course-row {
                flex-wrap: wrap;
            }
     
            .course-row input, .course-row select {
                margin-bottom: 10px;
                flex: 0 0 100%;
            }
            
            .semester-point {
                width: 100px;
            }
        }
    @media (max-width: 768px) {
            .comparison-table {
                display: block;
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                border-collapse: collapse;
            }
            
            .comparison-table thead,
            .comparison-table tbody,
            .comparison-table th,
            .comparison-table td,
            .comparison-table tr {
           //     display: block;
            }
            
            .comparison-table thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }
            
            .comparison-table tr {
                border: 1px solid var(--border-color);
                margin-bottom: 1rem;
                border-radius: 6px;
                overflow: hidden;
            }
            
            .comparison-table td {
                border: none;
                border-bottom: 1px solid var(--border-color);
                position: relative;
              //  padding-left: 50%;
                text-align: left;
            }
            
            .comparison-table td:before {
                position: absolute;
                top: 50%;
                left: 1rem;
                width: 45%;
                padding-right: 1rem;
                white-space: nowrap;
                transform: translateY(-50%);
                font-weight: 600;
                content: attr(data-label);
            }
            
            .comparison-table td:last-child {
                border-bottom: 0;
            }
        }