* {
    margin: 0px;
    padding: 0px;
    box-sizing: content-box;
    -ms-overflow-style: none;
    font-size: 14px;
}

/*----------------(+) Added for hiding the Horizontal Scrollbar----------------*/

html {
    overflow-x: hidden;
}

/*---------------- (+) Added for hiding the Horizontal Scrollbar----------------*/

/*----------------(-) Removed for making the Scrollbar visible----------------*/

/*::-webkit-scrollbar {
    display: none;
}*/

/*----------------(-) Removed for making the Scrollbar visible----------------*/

a {
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    text-decoration: none;
}

    a:focus {
        outline: none !important;
    }

button {
    outline: none !important;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }


/*//////////////////////////////////////////////////////////////////
[ TopHeader ]*/

.page-wrapper {
    width: calc(100%);
    /*margin-left: 225px;*/
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    border-bottom: solid #53bbbe;
    border-bottom-width: 4px;
    background-color: #FFFFFF;
}

.page-wrapper1 {
    width: 100%;
    height: auto;
}

/*.nav-wrapper {
    width: 100%;
}*/

/*.navibar {
    width:100%;
    background-color: #FFFFFF;
}*/

/*.nav-list {
    list-style-type: none;
}

    .nav-list .nav-item {
        display: inline-block;
    }

.nav-item a {
    font-family: Lato-Bold;
    font-size: 18px;
    color: #53bbbe;
}

    .nav-item a:hover {
        color: #000000;
    }

.menu {
    display: none; }*/


/*.menu-line {
    margin-top: 40px;
    margin-left: 15px;
    margin-right: 15px;
    width: auto;
    height: 1px;
    background-color: #ffffff;
}*/

.dateDiv {
    font-family: Avenir-Medium;
    font-size: 18px;
    color: #000000;
    display: block;
    padding: 0 10px 0 10px;
}



/*//////////////////////////////////////////////////////////////////
[ SideBar ]*/


.page-wrapperSide {
    height: 100%;
    width: auto;
}

.wrapper {
    height: 100%;
    background: #53bbbe;
    position: fixed;
    top: 0;
    left: 0;
    width: 225px;
    z-index: 1;
}



.sidebar {
    position: fixed;
    top: 36px;
    bottom: 0;
    left: 0;
    width: 200px;
    z-index: 600;
    transition: transform 0.3s ease, width 0.3s ease;
    background-color: rgb(245, 246, 246);
    overflow: visible;
}

    /* Collapsed sidebar */
    .sidebar.collapsed {
        width: 50px;
    }

        /* Hide text & dropdown in collapsed state */
        .sidebar.collapsed .item,
        .sidebar.collapsed .dropdown {
            display: none;
        }

        /* Floating submenu only in collapsed state */
        .sidebar.collapsed .sub-btn {
            position: relative;
        }

            .sidebar.collapsed .sub-btn:hover .sub-menu {
                display: block;
                opacity: 1;
                transform: translateX(0);
            }

        /* Submenu style for collapsed state */
        .sidebar.collapsed .sub-menu {
            position: absolute;
            top: 0;
            left: 50px;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            min-width: 180px;
            z-index: 1000;
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 0;
            transform: translateX(-10px);
        }

    /* Submenu style for expanded state (normal dropdown) */
    .sidebar:not(.collapsed) .sub-menu {
        display: none; /* Hide by default */
        position: relative;
        top: auto;
        left: auto;
        box-shadow: none;
        opacity: 1;
        transform: none;
        background: transparent;
    }

    /* Show submenu inline on hover in expanded state */
    .sidebar:not(.collapsed) .sub-btn:hover .sub-menu {
        display: block;
    }
.main-content-inner {
    margin-left: 240px;
    transition: margin-left 0.3s ease;
}

    .main-content-inner.collapsed {
        margin-left: 70px;
    }

@media (max-width: 300.98px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .page-wrapper {
        transform: translateX(-100%);
    }

        .sidebar.show {
            transform: translateX(0);
        }

    .main-content-inner {
        margin-left: 0 !important;
    }

    .page-wrapper.show {
        transform: translateX(0);
    }
    .page-wrapper {
        margin-left: 0 !important;
    }
}









.sub-menu a:hover {
    font-weight: bold;
    background-color: #ffffff;
    padding-left: 26px; /* subtle indentation effect */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05), 0 4px 10px rgba(0, 0, 0, 0.1);
}



.sub-btn a {
    transition: all 0.3s ease;
    border-radius: 10px;
}

    .sub-btn a:hover {
        font-weight: bold;
        background-color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    }

/* Transition applies to inner text too */
.item, .sub-menu a {
    transition: all 0.3s ease;
}

/* Feedback Button */
.logout-button a {
    transition: all 0.3s ease;
    border-radius: 10px;
}

    .logout-button a:hover {
        font-weight: bold;
        background-color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    }

    /* Collapsed sidebar */
    /*.wrapper.collapsed {
        width: 60px;
        transition: width 0.3s ease;
    }*/

        /* Keep the logo image size intact */
        /*.wrapper.collapsed .logo .pic {
            width: 250px;
            height: 80px;
        }*/

        /* Hide text elements in sidebar when collapsed */
        /*.wrapper.collapsed .txt2,
        .wrapper.collapsed .item,
        .wrapper.collapsed .sub-menu,
        .wrapper.collapsed .logout-button a span {
            display: none !important;
        }*/

/* Adjust the toggle button position */
/*#toggleBtn {
    position: absolute;
    top: 20px;
    left: 230px; 
    z-index: 1001;
    background-color: #53bbbe;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: left 0.3s ease;
}*/

/*.sidebar-toggle {
    position: absolute;
    top: 15px;
    right: -15px; 
    background-color: #53bbbe;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 0 5px 5px 0;
    z-index: 999;
    cursor: pointer;
    transition: right 0.3s ease;
}*/

/*.wrapper.collapsed .sidebar-toggle {
    right: -15px; 
}*/

/* When wrapper is collapsed, move toggle button closer */
/*.wrapper.collapsed + #toggleBtn {
    left: 70px;
}*/

.rotate {
    transform: rotate(90deg);
}

.filter-white {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(56deg) brightness(104%) contrast(101%);
}

.filter-violet {
    filter: brightness(0) saturate(100%) invert(36%) sepia(15%) saturate(2109%) hue-rotate(216deg) brightness(94%) contrast(96%);
}

.pic {
    width: 250px;
    height: 80px;
    padding: 7px 5px 7px 5px;
    margin-top: 7px;
}
/*@media (max-width: 768px) {
    .navbar img {
        height: 35px;
        max-width: 120px;
    }

    #profileDropdown {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}*/

/*BELL Movement*/
@keyframes ring {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(3deg);
    }

    60% {
        transform: rotate(-3deg);
    }

    70% {
        transform: rotate(2deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    90% {
        transform: rotate(1deg);
    }

    100% {
        transform: rotate(0);
    }
}

.Mydropbtn:hover .fa-bell {
    animation: ring 1s ease-in-out;
}
/*----Dropdown in messeges and bell*/

.Mydropdown {
    float: right;
    overflow: hidden;
}

    .Mydropdown .Mydropbtn {
        border: none;
        outline: none;
        color: navy;
        padding: 14px 16px;
        background-color: transparent;
        font-family: inherit;
        margin: 0;
    }

    .Mydropdown:hover .Mydropbtn {
        background-color: ButtonHighlight;
    }

.Mydropdown-content {
    display: none;
    position: absolute;
    background-color: aliceblue;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    word-wrap: normal;
    width: 300px;
}

    .Mydropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
        border-bottom: solid 1px;
    }

        .Mydropdown-content a:hover {
            background-color: white;
        }

.Mydropdown:hover .Mydropdown-content {
    display: block;
}



.hide-on-small {
    visibility: visible; /* Default visibility */
}

#text23 {
    display: none;
}

@media only screen and (max-width: 800px) {
    /* Hide the list item when the frame width is less than 800px */
    .hide-on-small {
        display: none;
    }

    .icon {
        transform: scale(0.5);
    }
    /*.txt2 {
            font-size: 1.2em;
        }*/
    .item {
        font-size: 25px;
    }

    #text23 {
        display: block;
    }
}

@media only screen and (max-width: 612px) {
    /* Hide the list item when the frame width is less than 800px */
    .txt2 {
        display: none;
    }
}








/*//////////////////////////////////////////////////////////////////
[ Text ]*/
.txt1 {
    font-family: 'Nunito', sans-serif color: #ffffff;
    font-size: 16px;
}

.txt2 {
    font-family: 'Nunito', sans-serif color: #000000;
    font-size: 23px;
}


.text-format {
    font-family: 'Nunito', sans-serif !important;
    color: #53bbbe;
    font-size: 18px;
    /*margin-left: 15px;*/
    margin-right: 15px;
}

.textBox {
    border-radius: 19px;
    border-style: solid;
    border-color: #674ea7;
    border-width: 3px;
    box-shadow: none;
    padding-left: 3px;
    padding-right: 3px;
    font-family: 'Nunito', sans-serif;
}

.comboBox {
    border-radius: 5px;
    border: none;
    box-shadow: none;
    padding-left: 3px;
    padding-right: 3px;
    font-family: 'Nunito', sans-serif;
}



/*------------------------------------------------------------------
[ Button ]*/
.container-form-btn {
    width: 160px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: none;
    margin-left: 30px;
    position: fixed;
    bottom: 30px;
}

.form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    height: 62px;
    border-radius: 10px;
    background: #f6b26b;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .form-btn:hover {
        background: #993d00;
    }

.main-content-inner {
    padding: 0px 10px 0px 0px; /* top right bottom left */
    margin-left: 225px;
    transition: margin-left 0.3s ease;
    background: #ffffff;
}

.main-content-inner1 {
    padding: 0px 10px 10px 15px; /* top right bottom left */
    background: #ffffff;
    width: 100%;
    border-top: 3px solid #000000;
}

.div-size {
    width: 100%;
    align-items: center;
}

.txt {
    font-size: 18px;
    font-family: 'Nunito', sans-serif !important;
    color: #909090;
}

.btn-new {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    width: 70px;
    height: 30px;
    border-radius: 10px;
    background: #ffffff;
    /*font-family: Poppins-Regular;*/
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #707070;
    line-height: 1.4;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: -3px;
}

.btn-search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    width: 90px;
    height: 40px;
    border-radius: 10px;
    background: #53bbbe;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: -3px;
}

.btn-searchreconfig {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    width: 140px;
    height: 40px;
    border-radius: 10px;
    background: #53bbbe;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: -3px;
}


    .btn-search:hover {
        background: #3B8F92;
    }

.btn-searchOrange {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background: #f6b26b;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: -3px;
}

    .btn-searchOrange:hover {
        background-color: #993d00;
    }

/*------TANMAY--------*/

.dateDiv1 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #000000;
    display: inline-block;
    margin-left: 32px;
    align-items: center;
}


.txt11 {
    font-size: 18px;
    font-family: 'Nunito', sans-serif !important;
    color: #000000;
}


.container {
    max-width: 600px;
    width: 100vw;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    margin-left: 20vw;
}

.container1 {
    max-width: 750px;
    width: 100vw;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    margin-left: 15vw;
}

.container4 {
    max-width: 950px;
    width: 100vw;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    margin-left: 5vw;
}

.container2 {
    max-width: 700px;
    width: 100vw;
    background-color: #fff;
    padding-top: 25px;
    padding-bottom: 10px;
    padding-right: 200px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    margin-left: 18vw;
}

.container3 {
    max-width: 1100px;
    width: 100vw;
    background-color: #fff;
    padding: 25px 30px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    margin-left: 5vw;
}

.container_signup_box {
    max-width: 700px;
    width: 100vw;
    padding: 25px 30px;
}

.container_new {
    width: 100vw;
    padding: 25px 30px;
    margin-left: 20vw;
}

.container .title {
    font-size: 30px;
    font-weight: 700;
    position: relative;
    font-family: 'Nunito', sans-serif;
    color: #53bbbe; /*omega*/
}

.container2 .title {
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-left: 200px;
    font-family: 'Nunito', sans-serif;
    color: #53bbbe; /*omega*/
}

.container3 .title {
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-left: 340px;
    font-family: 'Nunito', sans-serif;
    color: #53bbbe; /*omega*/
}

.content form .user-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px 12px;
}

.details-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 12px 0;
}

form .user-details .input-box {
    margin-bottom: 15px;
    width: calc(100% / 2 - 20px);
}

form .input-box span.details {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: 'Nunito', sans-serif;
    color: #53bbbe;
}

.textBox2 {
    width: 100%;
    border: none;
    border-bottom: 2px solid gray; /* single line bottom */
    outline: none;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    padding: 5px 3px;
    background: transparent;
    box-shadow: none !important;
    transition: 0.2s ease all;
}
.textBox1 {
    outline: none;
    border-radius: 4px;
    border-style: solid;
    border-color: #53bbbe; /*omega*/
    border-width: 1px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding-left: 3px;
    padding-right: 3px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
}


.tt {
    width: 100px;
    outline: none;
    border-radius: 7px;
    border-style: solid;
    border-color: #53bbbe; /*omega*/
    border-width: 2px;
    box-shadow: 2px;
    padding-left: 3px;
    padding-right: 3px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    align-items: center;
    text-align: center;
    /*padding-top: 10px;*/
}

.tt1 {
    width: 100px;
    outline: none;
    border-radius: 7px;
    border-style: solid;
    border-color: #53bbbe; /*omega*/
    border-width: 2px;
    box-shadow: none;
    padding-left: 2px;
    padding-right: 2px;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    align-items: center;
    text-align: center;
    padding-top: 5px;
}

form .user-type-details .user-type-title {
    font-size: 20px;
    font-weight: 500;
}

/*form .category {
    display: flex;
    width: 100%;
    margin: 14px 0;
    justify-content: space-between;
}*/

/*form .category label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }*/

form .category label .dot {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    margin-right: 10px;
    background: #d9d9d9;
    border: 5px solid transparent;
    transition: all 0.3s ease;
}


#dot-1:checked ~ .category label .one,
#dot-2:checked ~ .category label .two {
    background: #9b59b6;
    border-color: #d9d9d9;
}

form input[type="radio"] {
    display: inline-block;
}


.table-size {
    width: 100%;
    /*margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;*/
    color: #53bbbe;
    border-spacing: 0 10px;
}

.div-size1 {
    width: 100%;
    margin-top: -80px;
}


.version {
    width: 100px;
    outline: none;
    border-radius: 7px;
    border-style: solid;
    border-color: #595959;
    border-width: 2px;
    box-shadow: none;
    margin-left: 50px;
    padding-left: 3px;
    /*padding-right: 3px;*/
    font-family: 'Nunito', sans-serif;
    margin-top: 24px;
}

.pmPatient {
    width: 100px;
    outline: none;
    border-radius: 4px;
    border-style: solid;
    border-color: #53bbbe;
    border-width: 2px;
    box-shadow: none;
    margin-left: 70px;
    padding-left: 3px;
    /*padding-right: 3px;*/
    font-family: 'Nunito', sans-serif;
    border-color: #53bbbe;
}

.pmPatientTable {
    width: 180px;
    font-size: 18px;
    float: left;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    margin-top: 25px;
    color: #53bbbe;
}

/*---------------NARESH------------------*/

.background {
    background-color: #fff1e6 !important;
}

.logo_img {
    position: absolute;
    width: 510px;
    height: 125px;
    left: 100px;
    top: 10px;
    margin: 5px;
}

/*new change on 15-11-2023*/
.logo_img_new {
    position: absolute;
    width: 510px;
    height: 125px;
    left: 500px;
    top: 10px;
    margin: 5px;
}

.main_img {
    position: absolute;
    width: 500px;
    height: 500px;
    left: 105px;
    top: 145px;
    border: 2px solid #53bbbe;
}

.maintext {
    position: absolute;
    width: 700px;
    height: 100px;
    left: 750px;
    top: 82px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 12px;
    color: #53bbbe;
}

.maintext-m {
    position: absolute;
    width: 500px;
    height: 100px;
    left: 750px;
    top: 250px;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #53bbbe;
}

.maintext-m_new {
    position: absolute;
    width: 500px;
    height: 100px;
    left: 100px;
    top: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #53bbbe;
}

.input_bt {
    position: absolute;
    width: 450px;
    height: 40px;
    left: 750px;
    top: 400px;
    background: #D9D9D9;
    border: 2px solid #53bbbe;
    border-radius: 32px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 50;
    font-size: 17px;
    color: #53bbbe;
    padding-left: 35px;
}

.input_bt_new {
    position: absolute;
    width: 450px;
    height: 40px;
    left: 100px;
    top: 195px;
    background: #D9D9D9;
    border: 2px solid #53bbbe;
    border-radius: 32px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 50;
    font-size: 17px;
    color: #53bbbe;
    padding-left: 35px;
}

.input_bt_pwd {
    position: absolute;
    width: 450px;
    height: 40px;
    left: 750px;
    top: 350px;
    background: #D9D9D9;
    border: 2px solid #53bbbe;
    border-radius: 32px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 50;
    font-size: 17px;
    color: #53bbbe;
    padding-left: 35px;
}

.input_bt_pwd_new {
    position: absolute;
    width: 450px;
    height: 40px;
    left: 100px;
    top: 125px;
    background: #D9D9D9;
    border: 2px solid #53bbbe;
    border-radius: 32px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 50;
    font-size: 17px;
    color: #53bbbe;
    padding-left: 35px;
}

.input_bt_pwd_1 {
    position: absolute;
    width: 450px;
    height: 40px;
    left: 750px;
    top: 450px;
    background: #D9D9D9;
    border: 2px solid #53bbbe;
    border-radius: 32px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 50;
    font-size: 17px;
    color: #53bbbe;
    padding-left: 35px;
}

.input_bt_pwd_1_new {
    position: absolute;
    width: 450px;
    height: 40px;
    left: 100px;
    top: 230px;
    background: #D9D9D9;
    border: 2px solid #53bbbe;
    border-radius: 32px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 50;
    font-size: 17px;
    color: #53bbbe;
    padding-left: 35px;
}

.input_bt1 {
    position: absolute;
    width: 450px;
    height: 40px;
    left: 750px;
    top: 460px;
    background: #D9D9D9;
    border: 2px solid #53bbbe;
    border-radius: 32px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 50;
    font-size: 17px;
    color: #53bbbe;
    padding-left: 35px;
}

.blank-text {
    color: red;
    position: absolute;
    top: 400px;
    left: 787px;
    font-family: 'Nunito', sans-serif;
}

.blank-text_pwd_new {
    color: red;
    position: absolute;
    top: 175px;
    font-size: small;
    left: 100px;
    font-family: 'Nunito', sans-serif;
}

.blank-text_new {
    color: red;
    position: absolute;
    font-size: small;
    top: 250px;
    left: 100px;
    font-family: 'Nunito', sans-serif;
}

.blank-text-mtch_pwd {
    color: red;
    position: absolute;
    top: 400px;
    left: 787px;
    font-family: 'Nunito', sans-serif;
}

.blank-text-mtch_pwd_new {
    color: red;
    position: absolute;
    top: 285px;
    left: 100px;
    font-size: small;
    font-family: 'Nunito', sans-serif;
}

.btn1 {
    position: absolute;
    width: 100px;
    height: 50px;
    left: 900px;
    top: 500px;
}

.btn1_new {
    position: absolute;
    width: 100px;
    height: 50px;
    left: 260px;
    top: 290px;
}

.bg-div {
    position: absolute;
    background-color: gray;
    left: 100px;
    top: 100px;
    border-style: dashed;
    border-radius: 10px;
}

.btn_reset {
    position: absolute;
    width: 220px;
    height: 50px;
    left: 850px;
    top: 525px;
}

.btn_reset_new {
    position: absolute;
    width: 220px;
    height: 50px;
    left: 250px;
    top: 320px;
}

.heading-text {
    position: absolute;
    top: -75px;
    font-size: 25px;
}

.text-signup {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: 'Nunito', sans-serif;
}

/*---------------Patient Treatment Details--------------*/
/*omega*/

.text-heading {
    width: 40%;
    /*position: ;*/
    top: 120px;
    font-family: 'Nunito', sans-serif;
}

.text-heading1 {
    position: absolute;
    left: 1220px;
    top: 120px;
    font-family: 'Nunito', sans-serif;
}

/*//////////////////Pop-up Box////////////////////////////*/
.okbtn {
    position: relative;
    left: 70px;
}




/*-----------------------SSG---------------------------*/
.gridViewHeader {
    background-color: #c5e4e6 !important;
    font-family: 'Nunito', sans-serif !important;
    color: #000 !important;
    text-align: left;
    font-size: 10px !important;
    border-collapse: collapse !important;
}

.gridViewRow {
    border: none !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 12px !important; /* Smaller text */
    color: #000 !important;
    background-color: #fff !important;
    border-bottom: 2px solid black !important; /* Only bottom border */
    height: 20px !important;
}

.gridViewAlternatingRow {
    border: none !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 12px !important; /* Smaller text */
    color: #000 !important;
    background-color: #fff !important;
    border-bottom: 2px solid black !important; /* Only bottom border */
    height: 20px !important;
}

.gridViewPager {
    /*background-color: #53bbbe !important;*/
    color: white !important;
    border-collapse: collapse !important;
}



.hovered {
    font-weight: bold;
    border: 2px solid #000000; /* Full border on hover */
    box-sizing: border-box;
    position: relative; /* Ensure the shadow is positioned correctly */
    /* Apply shadow on all four sides but focus on top and bottom visibility */
    box-shadow: 0px -2px 2px rgba(0, 0, 0, 0.2), 0px 2px 2px rgba(0, 0, 0, 0.2),0px 2px 2px rgba(0, 0, 0, 0.2),0px 2px 2px rgba(0, 0, 0, 0.2); /* Top and bottom shadows */
}





.gridViewPager {
    /*background-color: #53bbbe !important; /* Customize the pager background color */*/
    color: white !important; /* Customize the pager text color */
}

    .gridViewPager a {
        color: white !important; /* Customize the link color */
    }

    .gridViewPager .dxp-num {
        color: white !important; /* Customize the number color */
    }

.gridViewFooter {
    background: #53bbbe !important; /* Customize the footer background color */
    color: #53bbbe !important; /* Customize the footer text color */
    text-align: center; /* Center align the text */
}


.PartialCellStyle {
    /*background-color: #53bbbe !important; /* Apply the background color */
    color: black !important; /* Set the text color to white */
    text-align: center !important; /* Center the text */
    border-collapse:collapse !important;
}
