﻿*,
*::after,
*::before {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@media print {
    @page {
        size: landscape;
    }

    .hide-column {
        display: none;
    }
}

/*Assistance Toggle*/

.highlight {
    background-color: yellow;
    border-radius: 5px;
    padding: 4px;
}

    .highlight li a {
        color: black !important;
    }
    .highlight li{
        color: black !important;
    }


.toggle-assistence-btn {
    position: fixed;
    top: 60px;
    right: 0;
    width: 40px;
    height: 67px;
    background-color: #6BAD6F;
    opacity: 0.5;
    border-radius: 50px 0 0 50px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s ease, transform 0.5s ease, background-color 0.3s ease;
}

.color_switcher {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

    .color_switcher li[data-color="blue"] {
        border: 1px solid #ffffff;
        height: 20px;
        width: 20px;
        background: linear-gradient(135deg,#2b8cff,#4aa8ff);
        cursor: pointer;
    }

    .color_switcher li[data-color="green"] {
        border: 1px solid #ffffff;
        height: 20px;
        width: 20px;
        background: linear-gradient(135deg,#1dbf73,#4fe38a);
        cursor: pointer;
    }

    .color_switcher li[data-color="red"] {
        border: 1px solid #ffffff;
        height: 20px;
        width: 20px;
        background: linear-gradient(135deg,#ff6b6b,#ff9a9a);
        cursor: pointer;
    }

    .color_switcher li[data-color="purple"] {
        border: 1px solid #ffffff;
        height: 20px;
        width: 20px;
        background: linear-gradient(135deg,#7b61ff,#b07bff);
        cursor: pointer;
    }

.font-button-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

.color_switcher li:first-child {
    background-color: #115b9b;
}

.color_switcher li:nth-child(2) {
    background-color: #457847;
}

.color_switcher li:nth-child(3) {
    background-color: #764725;
}

.color_switcher li:nth-child(4) {
    background-color: #851414;
}

.font-button {
    display: inline-block;
    padding: 5px 20px;
    min-width: 60px;
    text-align: center;
    border-radius: 8px;
    background-color: rgba(59, 114, 189, 0.85);
    color: #fff !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #343a40;
}

.blue .font-button {
    background-color: #3b72bdd9 !important;
}

.blue .clrchng {
    background-color: rgb(17, 91, 155) !important;
}

.accessibility-container.open {
    right: 0;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.5);
}

.blue .accessibility-container {
    background-color: rgba(87, 127, 217, 0.5) !important;
}

.font-section, .color-section, .extra-section {
    margin-bottom: 15px;
}

.accessibility-panel a {
    color: yellow;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.extra-section a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 15px;
    min-width: 120px;
    text-align: center;
    border-radius: 8px;
    background-color: rgba(59, 114, 189, 0.85);
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #343a40;
    margin: 5px;
}

.accessibility-container {
    position: fixed;
    top: 120px;
    right: -350px;
    width: 300px;
    background-color: rgba(107, 173, 111, 0.85);
    color: white;
    border-radius: 8px 0 0 8px;
    transition: right 0.5s ease, box-shadow 0.5s ease;
    padding: 20px;
    z-index: 9999;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


    /* Active state — visible on screen */
    .accessibility-container.active {
        right: 0;
    }

/*Assistance Toggle*/


.gst-disclaimer {
    display: block;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f9f9f9;
    font-size: 14px; /* Increased font size */
    line-height: 1.5;
}

    .gst-disclaimer input {
        margin-right: 10px;
        transform: scale(1.2); /* Bigger checkbox */
    }


.table-container {
    max-height: 500px; /* Adjust height as needed */
    overflow-y: auto; /* Enable vertical scrolling */
    position: relative; /* Ensure proper positioning for sticky headers and rows */
}

.table-fixed thead th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa; /* Match table header background */
    z-index: 2; /* Ensure header stays above content and fixed row */
}

.table-fixed .tbodyFirst tr:first-child {
    position: sticky;
    top: 38px; /* Adjust based on header height (approximate height of thead) */
    background-color: #fff3cd; /* Match .table-warning background */
    z-index: 1; /* Ensure fixed row stays above other rows but below header */
}

.table-fixed {
    width: 100%;
    table-layout: fixed; /* Ensure consistent column widths */
}

    .table-fixed th, .table-fixed td {
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Handle overflow text */
    }

.table-click:hover {
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
}
/*.container-fluid{
    overflow:auto !important;
}*/
.certificate-container {
    position: relative;
}

.form-text-size {
    font-size: 20px;
    font-weight: 700;
}

table {
    font-size: 12px !important;
}

    table tbody tr td a, table tbody tr td button {
        font-size: 12px !important;
    }

.sign-box {
    width: 100px;
    height: 90px;
    background-color: blue;
}

.inputOne {
    position: absolute;
    top: 398px;
    left: 440px;
}

.inputTwo {
    position: absolute;
    top: 462px;
    left: 315px;
}

.inputThree {
    position: absolute;
    top: 462px;
    left: 535px;
}

.inputThree-two {
    position: absolute;
    top: 440px;
    left: 531px;
}

.inputFour {
    position: absolute;
    top: 462px;
    left: 878px;
}

.inputFive {
    position: absolute;
    top: 527px;
    left: 184px;
}

.inputSix {
    position: absolute;
    top: 812px;
    left: 130px;
}

.inputSeven {
    position: absolute;
    top: 658px;
    left: 978px;
}



.card-header {
    font-weight: 600;
}

label {
    font-weight: 600;
}

:root {
    --headerBgColor: #c9e6f1;
    --navbarBgColor: #14406c;
    --subHeadingTextColor: #555;
    --heading: #1a5180;
    --headerBgColor2: #ffffff;
    --bodyColour: #f5f5f5;
    --topFontAjustButtonBg: #161515;
    --topFontAjustButtonFontColor: #ffffff;
    --gradientFontColor: #c9e6f1;
    --mainHeaderContainer: #ffffff;
    --mainNavbarTextColor: #ffffff;
    --onActive: #6610f2;
    --onFocus: #08c;
    --btn: #757bc3;
    --white: #ffffff;
}

.btn-custom-color {
    color: var(--white);
    background-color: var(--btn);
    border: 2px solid var(--btn);
}

    .btn-custom-color:hover {
        color: var(--btn);
        background-color: var(--white);
        border: 2px solid var(--btn);
    }

body {
    background-color: var(--bodyColour);
}



#slider-container {
    background-color: #ffffff;
    margin: 10px;
    padding-top: 10px;
    border-radius: 10px;
}

.custom-btn-hover:hover {
    cursor: pointer;
}

@media screen and print {
    #selectFinYr {
        display: none !important;
    }
}

.top-header-container {
    background-color: var(--bodyColour)
}

.printexport {
    margin-bottom: 100px;
}
/*.tab-content {
    border: 2px solid #683D25;
}*/
/* Top Bar */
.top-header-image {
    margin: 0px;
    width: 30px;
    height: 20px;
}

.table-head-bg {
    background-color: var(--headerBgColor) !important;
    color: #000;
}

.main-heading-container h4 {
    font-weight: 700;
}

.top-header-text {
    border-left: 2px solid #000000;
}

    .top-header-text p {
        font-size: 0.5rem;
        margin: 0;
        font-weight: 700;
    }

.custom-btn {
    background-color: var(--topFontAjustButtonBg);
    color: var(--topFontAjustButtonFontColor);
    width: 26px;
    height: 24px;
    font-size: 12px;
    font-weight: 700;
}

.light-dark-mode {
    background-color: #d9d9d9;
    border-radius: 4px;
}

    .light-dark-mode div {
        cursor: pointer;
        width: 2rem;
        height: 1.5rem;
    }

.dark-light-img {
    display: flex;
    height: 1rem;
    justify-content: center;
}

.dark-light-img-active {
    background-color: var(--topFontAjustButtonFontColor);
    border-radius: 4px;
}

.custom-select {
    width: 8rem;
    height: 1.8rem;
    padding: 1px 10px;
}

.custom-select-mobile {
    width: 6rem;
    height: 1.8rem;
    padding: 1px 10px;
}

/* Main Header Container */
.main-header-container {
    background-color: var(--headerBgColor);
}

/* Footer */
.footer-container {
    background: rgb(165, 8, 7);
    background: var(--navbarBgColor);
}

.footer-text-container p {
    color: var(--headerBgColor);
    font-size: 0.8rem;
}


.navbar-main-container {
    z-index: 999;
    background: rgb(165, 8, 7);
    background: var(--navbarBgColor);
}

.close-toggle-btn {
    width: 2rem;
    color: #ffffff;
    background-color: transparent;
    border: none;
    position: absolute;
    right: 10px;
    top: 10px;
}


.main-list {
    list-style: none;
}

    .main-list li a {
        text-decoration: none;
        color: var(--mainNavbarTextColor);
        font-size: 1rem;
        margin-right: 15px;
        cursor: pointer;
    }

.mobile-menu-container {
    z-index: 1;
    background-color: #a81009;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    transition: 2s ease-in-out;
}

.main-list-mobile {
    list-style: none;
    height: 100vh;
    width: 100vw;
    background-color: rgba(104, 61, 37, 0.3);
}

    .main-list-mobile li {
        border-bottom: 2px solid #ffffff;
        padding: 10px 30px;
    }

        .main-list-mobile li a {
            text-decoration: none;
            color: var(--mainNavbarTextColor);
            font-size: 1rem;
            margin-right: 15px;
            cursor: pointer;
            font-weight: 500;
        }

.auth-custom-btn {
    width: 10rem;
    margin-right: 5px;
    background-color: var(--btn);
    font-size: 14px;
    color: #ffffff;
    padding: 6px 12px;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

    .auth-custom-btn:hover {
        background-color: #ffffff;
        color: #000;
        border: 1px solid var(--btn);
    }

    .auth-custom-btn:disabled {
        background-color: #ffffff;
        color: #000;
        border: 1px solid var(--btn);
    }

.create-mb-custom-btn {
    width: 7rem;
    margin-right: 5px;
    background-color: #a81009;
    font-size: 1rem;
    color: #ffffff;
    padding: 6px 2px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}


    .create-mb-custom-btn:hover {
        background-color: #ffffff;
        color: #a81009;
    }

.move-mb-custom-btn {
    margin-right: 5px;
    background-color: #ffffff;
    font-size: 1rem;
    color: var(--btn);
    padding: 6px 2px;
    border: 1px solid var(--btn);
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

    .move-mb-custom-btn:hover {
        background-color: var(--btn);
        color: #fff;
        border: 1px solid #ffffff;
    }

.name-letter {
    width: 2.5rem;
    height: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #a81009;
    border-radius: 3rem;
    font-size: 1.6rem;
    text-align: center;
}

.toggle-btn {
    background-color: #a81009 !important;
    width: 2rem;
    height: 2rem;
    border-radius: 3rem;
    border: none;
}

.dropdown-menu-dark {
    width: 280px !important;
}

#showContainer {
    width: 280px;
    background-color: #d88123;
    color: #ffffff;
    position: absolute;
    right: 16px;
    border-radius: 9px;
    padding: 10px 20px;
    z-index: 1;
}



.toggle-custom-btn {
    width: 2rem;
    background-color: transparent;
    color: #ffffff;
    border: none;
}

/* Side Bar Container */
.side-bar-container {
    min-width: 221px;
    width: 250px;
    height: 50vh;
    background-color: #ffffff;
    transition: 500ms ease-in-out;
    overflow: auto;
}

.side-bar-container-after-click {
    width: 70px;
    height: 50vh;
    background-color: #ffffff;
    transition: 500ms ease-in-out;
}

.side-bar-container ul {
    list-style: none;
}

    .side-bar-container ul li a {
        font-size: .9rem;
        text-decoration: none;
        margin-top: 5px;
        font-weight: 500;
    }

.side-bar-container-after-click ul {
    list-style: none;
}

    .side-bar-container-after-click ul li a {
        font-size: .9rem;
        text-decoration: none;
        margin-top: 5px;
        font-weight: 500;
    }

.text-side-bar-hide {
    display: none;
}

#trapezoid {
    /*border-bottom: 40px solid #e8e7e7;*/
    /* border-right: 25px solid #ffffff;*/
    /* height: 0px;*/
    /*width: 250px;*/
}

.side-bar-top-bar-container {
    height: 40px;
    justify-content: space-between;
    background-color: var(--headerBgColor);
    color: #000;
    width: 250px;
}

.side-bar-toggle-btn {
    margin-top: 4px;
    margin-right: 13px;
}

    .side-bar-toggle-btn button {
        font-size: 20px;
        border: none;
        background-color: transparent;
    }

.side-bar-top-bar-container p {
    padding: 0px 20px;
    font-size: 1rem;
    font-weight: 700;
}

.list-dk {
    padding: 10px 0px 10px 28px;
}

    .list-dk a {
        color: #000;
    }

.active-dk {
    background-color: #683d25;
    padding: 10px 0px 10px 28px;
}

    .active-dk a {
        color: #ffffff;
    }



.search-container {
    width: 2rem;
    height: 2rem;
    background-color: #a81009;
    color: #ffffff;
    align-content: center;
    border-radius: 4px;
}


#showSearchInput {
    background-color: #ffffff;
    width: max-content;
}


.mobile-search-input {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}
/* Body Container */
.top-heading-container {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 40px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

    .top-heading-container > h4 {
        font-size: 1.5rem;
        font-weight: 700;
    }
/* Mobile Side Bar View */
.navTopBar {
    list-style: none;
    background-color: #ffffff;
    align-items: center;
    height: 36px;
}

    .navTopBar li {
        margin-right: 10px;
        width: max-content;
    }

        .navTopBar li a {
            text-decoration: none;
            margin-bottom: 0;
        }

.mubut {
    background-color: transparent;
    font-size: 24px;
    border: none;
}

.list-mobile a {
    color: #683d25;
    padding: 0 12px;
}

/*.active-mobile {
    background-color: #683d25;
}*/

.active-mobile a {
    color: #ffffff;
    padding: 0 12px;
}

.e-work-custom {
    width: 6rem;
    height: 1.6rem;
}

.search-input {
    width: 250px;
}

.footer-text {
    background-color: var(--navbarBgColor);
    color: #ffffff;
}



.sub-heading-two {
    width: -webkit-fill-available;
    width: -moz-available;
    font-size: 1rem;
    border-radius: 10rem;
    font-weight: 600;
}

@media only screen and (max-width: 1445px) {
    .side-bar-container {
        min-width: 214px;
    }
}

@media only screen and (max-width: 1025px) {
    .side-bar-container {
        min-width: 200px;
    }
}

@media only screen and (max-width: 767.9px) {
    .footer-text {
        font-size: .5rem;
        background-color: var(--navbarBgColor);
        color: #ffffff;
    }

    #slider-container {
        margin: 5px;
    }

    .search-input {
        width: 150px;
    }
    /* .top-header-text {
    border: none;
  } */
    .top-header-image {
        margin-bottom: 5px;
    }

    .main-heading-container h4 {
        font-size: 1rem;
        font-weight: 700;
    }

    .main-list li a {
        font-size: 10px;
    }

    .name-letter {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.6rem;
    }

    .e-work-custom {
        width: 10rem;
        height: 3rem;
    }

    .search-input {
        margin: auto;
    }
}

@media only screen and (max-width: 576.9px) {
    #slider-container {
        margin: 0px;
    }
}

/*
Navbar Css*/
:root {
    --navbarSize: auto;
}
/*
.dropdown-menu .dropdown-item {
    font-size: 0.9rem;
}*/

.dropdown-menu {
    height: var(--navbarSize);
    border-radius: 10px;
}
/* Custom styles for dropdown layers */
.dropdown-menu-sub {
    display: none;
    position: absolute;
    height: var(--navbarSize);
    margin-top: 0;
    z-index: 999; /* Ensure it appears on top */
}

li a {
    font-size: 1.2rem;
}

/* Show sub-menu on hover */
.dropdown-submenu:hover .dropdown-menu-sub {
    display: block;
    top: 0;
    left: 100%;
}

/* Show the dropdown when hovering */
.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.bg-custom {
    background-color: #14406c;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.style1 {
    font-size: medium;
    font-weight: bold;
}

.style2 {
    font-size: medium;
}

.style3 {
    text-align: left;
}

.button {
    background: none !important;
    border: none;
    padding: 0 !important;
    /*optional*/
    font-family: arial, sans-serif;
    /*inp ut has OS specific font-family*/
    color: #069;
    text-decoration: underline;
    cursor: pointer;
}

#ctl00_ContentPlaceHolder1_ddlscheme {
    width: 100%;
}

#addShow {
    display: none
}

.nav-item a {
    font-weight: 600;
    font-size: unset;
}





@media screen and (max-width: 991.9px) {
    #addShow {
        background-color: transparent;
        color: #ffffff;
        display: block;
        font-weight: 600;
    }
}

/* E-Payment CSS */
.form-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.form-container-san {
    margin: 10px auto 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container-new {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.text-danger {
    color: red;
}



.headerimage {
    width: 70px;
    margin-left: 15px;
    margin-top: 15px;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.modalLoading {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
    display: none;
}

#sansthaAadharContain {
    display: none;
}

#janAadharContain {
    display: none;
}


#vendorContainer {
    display: none;
}

#memberList {
    display: none;
}

#submitForm {
    display: none;
}
