﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ======== GLOBAL ======== */
body {
    background-color: #f5f7fb;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    line-height: 1.5;
    color: #202940;
    font-size: 14px;
    overflow-x: hidden;
    margin: 0;
}

/* ======== SIDEBAR ======== */
#kz_Menubar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background-color: #ffffff;
    border-right: 1px solid #e5e9f2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    overflow-y: auto;
    z-index: 1;
}

    #kz_Menubar .nav-item {
        list-style: none;
        margin-bottom: 2px;
    }

    #kz_Menubar .nav-link {
        display: flex;
        align-items: center;
        padding: 10px 18px;
        color: #5a6a85;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

        #kz_Menubar .nav-link:hover,
        #kz_Menubar .nav-link.active {
            background-color: #edf2fa;
            color: #007bff;
        }

        #kz_Menubar .nav-link i {
            margin-right: 10px;
            font-size: 16px;
        }

    /* ======== SCROLLBAR ======== */
    #kz_Menubar::-webkit-scrollbar {
        width: 6px;
    }

    #kz_Menubar::-webkit-scrollbar-thumb {
        background-color: #cfd8dc;
        border-radius: 6px;
    }

/* ======== TOPBAR ======== */
#kz_Topbar {
    position: fixed;
    top: 0;
    left: 260px;
    right: 0;
    height: 64px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e9f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 900;
}

    #kz_Topbar .navbar {
        width: 100%;
    }

    #kz_Topbar .toggleNav {
        cursor: pointer;
        font-size: 20px;
        color: #5a6a85;
        transition: 0.2s;
    }

        #kz_Topbar .toggleNav:hover {
            color: #007bff;
        }

/* ======== BODY ======== */
#kz_Body {
    margin-left: 260px;
    margin-top: 70px;
    padding: 25px;
    transition: all 0.3s ease;
}

/* ======== CARDS ======== */
.sectionFieldset, #kz_lnkListContent, #pageHeader {
    background-color: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 24px;
    margin-bottom: 24px;
}

    .sectionFieldset h5,
    .sectionFieldset .card-title {
        font-weight: 600;
        color: #202940;
        margin-bottom: 20px;
    }

/* ======== FORM CONTROLS ======== */
.form-control {
    border: 1px solid #e5e9f2;
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    padding: 10px 12px;
    transition: border-color 0.2s;
}

    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }

/* ======== LABELS ======== */
.kz_fieldLabel {
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    display: block;
    margin-bottom: 6px;
}

/* ======== BUTTONS ======== */
.btn {
    border-radius: 30px;
    font-weight: 500;
    padding: 8px 20px;
    transition: 0.2s;
    margin-top: 10px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

    .btn-primary:hover {
        background-color: #0069d9;
    }

/* ======== COLLAPSED STATE ======== */
body.sidebar-collapsed #kz_Menubar {
    left: -260px;
}

body.sidebar-collapsed #kz_Topbar {
    left: 0;
}

body.sidebar-collapsed #kz_Body {
    margin-left: 0;
}

/* ======== RESPONSIVE BREAKPOINTS ======== */

/* Large Tablets and Below */
@media (max-width: 1200px) {
    #kz_Topbar {
        left: 0;
    }

    #kz_Menubar {
        left: -260px;
    }

        #kz_Menubar.show {
            left: 0;
        }

    #kz_Body {
        margin-left: 0;
        padding: 20px;
    }
}

/* Tablets and Mobile */
/* ===== FIX SIDEBAR FOR MOBILE ===== */
@media (max-width: 992px) {

    /* Sidebar hidden by default */
    #kz_Menubar {
        position: fixed;
        top: 0;
        left: -260px !important; /* KEEP IT HIDDEN */
        width: 260px;
        height: 100%;
        z-index: 99999;
        transition: left 0.3s ease;
    }

        /* Sidebar when opened */
        #kz_Menubar.show {
            left: 0 !important;
        }

    /* dim background when sidebar is open */
    body.menu-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        z-index: 9999;
    }
}


/* Small Mobile Devices */
@media (max-width: 576px) {
    #kz_Topbar {
        height: 56px;
    }

    #kz_Body {
        margin-top: 65px;
        padding: 12px;
    }

    .btn {
        width: 100%;
    }

    .sectionFieldset {
        border-radius: 12px;
    }

    #kz_Menubar {
        width: 220px;
    }

        #kz_Menubar .nav-link {
            padding: 8px 12px;
        }
}

.isUnauthorizedPage {
    margin-left: 0px !important;
    margin-top: 0px !important;
}

.kz_fieldDiv {
}

.MenuIcon {
    padding-right: 5px;
}


/* ===== MOBILE TOPBAR VISIBILITY FIX ===== */
@media (max-width: 992px) {

    /* Hide everything inside #kz_Topbar > .navbar */
    #kz_Topbar .navbar > * {
        display: none !important;
    }

    /* But keep toggleNav visible */
    #kz_Topbar .toggleNav {
        display: inline-flex !important;
        align-items: center;
        padding: 0 10px;
        font-size: 20px;
        position: fixed;
        right: 34px;
        width: 20px;
    }

    /* Keep Logo visible */
    #kz_Topbar .logo, #kz_Topbar .Logoff {
        display: inline-flex !important;
        align-items: center;
        padding-left: 10px;
    }

        #kz_Topbar .logo img {
            height: 40px;
        }
    /* Make Topbar layout left-aligned for mobile */
    #kz_Topbar {
        display: flex !important;
        justify-content: flex-start !important;
        gap: 10px;
    }
}

##pageFooterButtons {
    text-align: center
}

#kz_Topbar .logo img, #kz_Topbar .ProfilePicture img {
    height: 40px;
}

#kz_Topbar .ProfilePicture img, #kz_ListTable .ProfilePicture img {
    border-radius: 50%;
    height: 40px;
}

#kz_ListTable .ProfilePicture {
    float: left;
    padding-right: 20px;
}

#kz_ListTable .Active {
    background-color: #D2F9F4;
    color: #00CEB6;
    padding: 5px 10px 5px 10px;
    border-radius: 15px;
}

#kz_ListTable .InActive {
    background-color: #FFE4EC;
    color: #FF6692;
    padding: 5px 10px 5px 10px;
    border-radius: 15px;
}

#kz_ListTable .MobileNo {
    background-color: #E5F5FF;
    color: #00A1FF;
    padding: 5px 10px 5px 10px;
    border-radius: 15px;
}

#kz_Topbar .Logoff, #kz_Topbar .notificationIcon, #kz_Topbar .ProfilePicture, #kz_Topbar .toggleNav {
    width: 70px;
    text-align: center;
}

    #kz_Topbar .Logoff a, #kz_Topbar .notificationIcon a, #kz_Topbar .toggleNav a {
        width: 70px;
        height: 40px;
        padding-top: 12px;
        text-align: center;
        color: #8d9096;
        font-weight: lighter;
    }

        #kz_Topbar .Logoff a::before, #kz_Topbar .notificationIcon a::before {
            content: "";
            position: absolute;
            width: 45px;
            height: 45px;
            background: #DFF1FD; /* blue */
            border-radius: 100%;
            transform: translate(-30%, -30%); /* center the circle */
            opacity: 0;
            z-index: -1; /* behind content */
        }

        #kz_Topbar .Logoff a:hover::before, #kz_Topbar .notificationIcon a:hover::before {
            opacity: 1;
            animation-play-state: running;
        }



.isUnauthorizedPage #kz_submit {
    width: 80%
}

.isUnauthorizedPage .sectionFieldset {
    background: none;
    box-shadow: none;
}

.isUnauthorizedPage .sectionFieldset, .isUnauthorizedPage {
    padding: 0px !important;
}

#div_110 {
    height: auto; /* full screen height */
    display: flex;
    background-color: rgb(248,250,253);
    /* justify-content: center; /* horizontal center */
    /* align-items: center; vertical center */
}


#div_109 {
    height: auto; /* full screen height */
    display: flex;
    /* justify-content: center; /* horizontal center */
    /* align-items: center; vertical center */
}

#div_111, #div_112 {
    height: 100vh;
    display: flex;
}


.Page-50 #pageFooterButtons, .Page-52 #pageFooterButtons {
    display: none;
}

body:has(.isUnauthorizedPage) {
    margin: 0 !important;
    padding: 0;
    height: 100%;
    min-height: 100vh;
    background:
    /* Thicker & bigger arc ring */
    radial-gradient( circle 550px at 220px 80px, transparent 260px, #062a4d 260px, #062a4d 360px, /* increased thickness */
    transparent 360px ),
    /* Bigger circle */
    radial-gradient( circle 450px at 360px 450px, #0f1e35 0%, #0f1e35 100% ),
    /* left 50% blue / right 50% white split */
    linear-gradient( to right, #0b1525 0%, #0b1525 50%, #ffffff 50%, #ffffff 100% );
    background-size: 50% 100vh, 50% 100vh, 100% 100vh;
    background-repeat: no-repeat;
    background-position: left top, left top, left top;
    font-family: Inter, sans-serif !important;
}

html:has(.isUnauthorizedPage) {
    background: linear-gradient( to right, #0F1E35 0%, #0F1E35 50%, #ffffff 50%, #ffffff 100% );
}
/*Unauthorized Page*/

#kz_Menubar .toggle-icon {
    position: absolute;
    right: 15px;
}

.ui-dialog {
    background-color: #fff !important;
    border: 1px solid gray !important;
}

#kz_Body:has(.IsModalPage) {
    margin-top: 0px !important;
}

#myModal {
    padding: 0px !important;
}

#dashboardMenuLink {
    padding: 10px;
    display: block;
}

.SrNo {
    width: 80px;
}

.CodeMirror {
    width: 100%;
}
/*--------------Added By Vishaal M 15/12/2025----------------------------*/
.font-mute {
    color: rgba(17, 28, 45, 0.6)
}

#div_ForgotPassword {
    margin-bottom: 0 !important;
}

#SignIn, #ForgotPassword {
    background: #00A1FF;
    border-color: #00A1FF;
    border-radius: 9px;
}

    #SignIn:hover, #ForgotPassword:hover {
        background: #0682ca;
        border-color: #0682ca;
    }

#BackToLogin {
    border-radius: 9px;
    background: rgba(0, 161, 255, 0.1);
    color: rgba(0,161,255);
    opacity: 1;
    margin-top: 4px !important;
}

    #BackToLogin:hover {
        background: #00A1FF;
        color: #ffffff;
    }

#div_UserName, #div_Password {
    margin-bottom: 0 !important;
}

.forgot-pwd a {
    text-decoration: none !important;
    font-weight: 600 !important;
    opacity: 0.9;
    color: rgb(0,161,255);
}

    .forgot-pwd a:hover {
        color: rgb(0,161,255);
    }

.logoimg {
    width: auto;
    height: 50px;
}

.text-bold {
    font-weight: bold;
}

#kz_field_1037 {
    width: 400px;
    margin-left: 3rem;
}

#div_Logo {
    width: 400px !important;
}

.border-top {
    border-top: 1px solid #e4ebf0 !important;
}

.bg-body {
    opacity: 1;
    background-color: rgba(255,255,255) !important;
}

.w-90 {
    width: 100% !important;
}

.translate-middle {
    transform: translate(-54%, -50%) !important;
}

.kz_FieldButtons {
    display: flex;
    justify-content: end;
    position: relative;
    top: -28px;
    right: 10px;
    cursor: pointer;
    height:0.1px;
}

.position-absolute {
    position: absolute !important;
}

.z-index-5 {
    z-index: 5 !important;
}

.start-50 {
    right: 50% !important;
}

.top-50 {
    top: 50% !important;
}

.border-muted {
    --bs-border-opacity: 0.1 !important;
}

.me-2 {
    margin-right: .5rem !important;
}

.rounded-2 {
    border-radius: var(--bs-border-radius) !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.py-8 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.align-items-center {
    align-items: center !important;
}

.btn-link {
    color: #2a3547;
}

.fs-1 {
    font-size: .625rem !important;
}

.fs-2 {
    font-size: .75rem !important;
}

.fs-3 {
    font-size: .875rem !important;
}

.fs-4 {
    font-size: 1rem !important;
}

.fs-5 {
    font-size: 1.125rem !important;
}

.fs-6 {
    font-size: 1.25rem !important;
}

.fs-7 {
    font-size: 1.5rem !important;
}

.fs-10 {
    font-size: 2.5rem !important;
}

.f-14 {
    font-size: 14px !important;
}

.pl-5 {
    padding-left: 3rem !important;
}
/* .div-UserName, .div-Password, .div-RegisteredEmail{
    padding-left: 3rem !important;
} */
.float-r {
    float: right !important;
}

.soc-btn {
    width: 140px !important;
    height: 43px !important;
}

@media (max-width: 1000px) {

    #div_109, #div_111 {
        display: none !important;
    }
/*
    #div_110, #div_112 {
        margin-left: 25% !important;
    }
*/
    body:has(.isUnauthorizedPage) {
        background: rgb(248,250,253) !important;
    }

    #kz_field_1037 {
        margin-left: 0rem;
    }
}
.ui-dialog .ui-dialog-titlebar-close {
    background-image: url(/images/aui-icon-close.png);
}
.field-required{
    color:red;
}

#kz_section_110 .SectionRow {
    width:330px;
}
.isDeveloperPage {
    background: none !important;
    background-color: #fff !important;
}
input[type="checkbox"] {
    width: 33px;
    height: 33px;
    cursor: pointer;
    margin:5px;
}