﻿@charset "UTF-8";
/* Consolidated from inline <style> (block 1) in _AccesibilityBarPartial.cshtml.
   --uway-left was Razor (culture-based); rendered statically via :lang() — identical values. */
:root { --uway-left: calc(100vw - 188px); }        /* en / default */
:root:lang(mr) { --uway-left: calc(100vw - 204px); } /* mr */

    /* GIGW 1.4.3: the emblem/logo links and the login dropdown icon use Bootstrap's
       default link blue (#0d6efd), which is only 4.32:1 on the mint header bg (#f0fdfa).
       Match the dark teal already used by the other top-bar links (#0a4660 ≈ 11:1).
       The logo links wrap only <img>s, so this is colour-neutral there; for the login
       icon it improves legibility. */
    .top-bar a.text-decoration-none.d-inline-block,
    .top-bar .header-left > a,
    .top-bar .header-center > a,
    .top-bar .header-right > a,
    .top-bar #screenReaderMobile,
    .top-bar #screenReaderMobile .bi,
    .dropdown-hover-content .dropdown-item .bi,
    .dropdown-hover-content a.dropdown-item {
        color: var(--nav-bg, #095a6f) !important; /* theme-aware; always dark enough */
    }

    [data-theme="government"] .emblem-logo-img,
    [data-theme="blue"] .emblem-logo-img {
        mix-blend-mode: multiply;
        filter: contrast(1.2); 
        /* Technical fix for theme-switch blurriness */
        transform: translateZ(0);
        backface-visibility: hidden;
        image-rendering: -webkit-optimize-contrast;
    }

    a#screenReader {
        font-size: 28px;
        color: white;
        text-decoration: none;
        cursor: pointer;
    }

        a#screenReader:hover {
            color: #0056b3;
        }

    #profileDropdown {
        z-index: 999999999999999999999999999999999999999999999999999999999999999999;
    }

    .login-signup-dropdown {
        right: 7rem;
    }

        .login-signup-dropdown .dropdown-menu {
            transform: none !important;
        }

    .topnav a {
        text-align: center;
        padding: 5px 16px;
        text-decoration: none;
        font-size: 1.1rem;
    }



        .topnav a.active {
            background-color: #04AA6D;
        }

    ul {
        list-style-type: none;
    }

    .dropbtn1 {
        font-size: 16px;
        border: none;
    }

    .dropdown1 {
    }

    .dropdown-content1 {
        display: none;
        position: absolute;
        background-color: black;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }

        .dropdown-content1 a {
            /*color: white;*/
            padding: 12px 16px;
            text-decoration: none;
        }

            .dropdown-content1 a:hover {
                background-color: black;
            }

    .dropdown1:hover .dropdown-content1 {
        display: block;
    }

    .dropdown1:hover .dropbtn1 {
        background-color: #3e8e41;
    }

    .popdownbtn {
        background-color: transparent;
        /* outline: none; */
        border: none;
    }

    @media (max-width:572px) {
        .topnav-right {
            margin-left: 0px !important;
        }
    }

    .topnav * {
        color: inherit;
    }

    .dropdown-hover {
        position: relative;
        display: inline-block;
    }

    .dropdown-hover-content a:hover {
        background-color: var(--border-color);
        font-weight: 600;
    }


    .dropdown-hover-content {
        display: none;
        position: absolute;
        background-color: #fff;
        min-width: 200px;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
        border-radius: 10px;
        z-index: 1;
    }

        .dropdown-hover-content a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            border-radius: 8px;
        }


    .dropdown-hover:hover .dropdown-hover-content {
        display: block;
    }

    .logout-item {
        background-color: var(--nav-bg); /* light red */
        color: #fff;
        font-weight: 600;
    }

    .dropdown-card {
        background: var(--nav-bg);
        color: #fff;
        display: flex; /* make it a flex container */
        justify-content: center; /* center horizontally */
        align-items: center; /* center vertically */
        text-align: center; /* center inline text */
    }

    .india-gov {
        width: 5%;
    }

        .india-gov:hover {
            background-color: var(--nav-bg);
        }