:root {
            --primary-blue: #0056b3;
            --dark-blue: #013788;
            --light-blue: #f2f7fb;
            --green: #198754;
            --light-gray: #f0f0f0;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
    
        body {
            overflow-x: hidden;
        }
    
        .top-header {
            background: linear-gradient(90deg, var(--dark-blue), var(--primary-blue));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 15px;
            font-size: 13px;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 1000;
        }
    
        .top-header span {
            color: #fff;
        }
    
        .top-header .number span {
            margin-right: 10px;
        }
    
        .accessibility-btn {
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: background 0.3s ease, transform 0.2s ease;
        }
    
        .accessibility-btn:hover {
            background: var(--dark-blue);
            transform: scale(1.03);
        }
    
        .skip a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.3s;
        }
    
        .skip a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
    
        #google_translate_element .goog-te-gadget-simple {
            font-size: 13px !important;
            padding: 5px 7px !important;
            border-radius: 4px;
            background: var(--white) !important;
            color: #333 !important;
            border: 1px solid #ddd !important;
        }
    
        .goog-te-gadget-simple a,
        .goog-te-gadget-simple span {
            font-size: 13px !important;
            text-decoration: none !important;
            color: #333 !important;
        }
    
        #accessibilityPanel {
            position: fixed;
            top: 0px;
            right: -450px;
            width: 430px;
            height: calc(100vh);
            background: var(--light-blue);
            border-radius: 0px;
            box-shadow: var(--shadow);
            transition: right 0.3s ease-in-out;
            z-index: 1050;
            overflow-y: auto;
            max-width: 90%;
        }
    
        #accessibilityPanel.active {
            right: 0;
        }
    
        @media (max-width: 768px) {
            #accessibilityPanel {
                width: 100%;
                /* right: -100%; */
                border-radius: 0;
                height: 100%;
                max-width: 100%;
            }
    
            #accessibilityPanel.active {
                right: 0;
            }
        }
    
        .accessibility-header {
            background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            padding: 0.8rem;
            /* border-radius: 10px 0 0 0; */
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 10;
        }
    
        .accessibility-header h5 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 700;
            color:#fff;
        }
    
        #closePanel {
            cursor: pointer;
            font-size: 1.2rem;
            background: transparent;
            color: var(--white);
            border-radius: 50%;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            font-weight: 900;
        }
    
        #closePanel:hover {
            background: rgba(255, 255, 255, 0.2);
        }
    
        .option-btn,
        .option-btn1 {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100px;
            border-radius: 6px;
            border: none;
            background: var(--white) !important;
            box-shadow: var(--shadow) !important;
            transition: all 0.2s ease;
            font-size: 13px;
            font-weight: 500;
            color: #000;
            cursor: pointer;
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
    
        .option-btn i,
        .option-btn1 i {
            font-size: 18px;
            margin-bottom: 4px;
            color: #000;
        }
    
        .option-btn:hover,
        .option-btn1:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
        }
    
        .option-btn.active,
        .option-btn1.active {
            border: 2px solid var(--primary-blue) !important;
            box-shadow: 0 0 10px rgba(11, 32, 221, 0.4) !important;
        }
    
        .d-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 12px;
        }
    
        .high-contrast {
            background: #000 !important;
            color: #fff !important;
        }
    
        .high-contrast * {
            background: #000 !important;
            color: #fff !important;
        }
    
        .highlighted-link {
            background: yellow !important;
            color: black !important;
            padding: 2px 4px;
            border-radius: 3px;
        }
    
        #main-content {
            margin-right: 0;
            transition: margin-right 0.3s ease-in-out;
            padding: 20px;
        }
    
        #accessibilityPanel.active~#main-content {
            margin-right: 450px;
        }
    
        @media (max-width: 768px) {
            #accessibilityPanel.active~#main-content {
                margin-right: 0;
            }
    
            .top-header {
                justify-content: center;
            }
        }
    
        /* Pause animations */
        .animations-paused,
        .animations-paused * {
            animation-play-state: paused !important;
            transition: none !important;
        }
        .d-grid{
            border: 2px solid rgb(199, 197, 197);
            margin:0 10px;
            border-radius: 10px;
        }