﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #5744CC;
    --bg-dark-color: #35288f;
    --bg-white: #fff;
    --bg-gray: #45505b;
    --bg-gray-light: #afafaf;
    --bg-darkgray: #515058;
    --bg-grwhite: #f2f3f5;
    --bg-lightwhite: #ededed;
    --bg-black: #000;
    --bg-light-gray: #cfcdcd;
    --bg-dark-back: #d9d9d9;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--bg-darkgray);
    font-size: .9rem;
}

a {
    color: var(--bg-color);
    text-decoration: none;
}

    a:hover {
        color: var(--bg-dark-color);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--bg-darkgray);
}

h1 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1rem;
}

.bg-purple {
    background-color: var(--bg-color);
}

    .bg-purple:hover {
        background-color: var(--bg-dark-color);
    }

.bg-purple-color:hover {
    color: var(--bg-dark-color);
}




/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    z-index: 10;
    transition: all 0.5s;
    padding: 15px;
    /*overflow-y: auto;*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.nav-menu {
    padding: 0;
    display: block;
}

    .nav-menu * {
        list-style: none;
    }

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
    }

    .nav-menu a,
    .nav-menu a:focus {
        display: flex;
        align-items: center;
        color: var(--bg-gray);
        padding: 10px 18px;
        margin-bottom: 2rem;
        transition: 0.3s;
        font-size: 15px;
        border-radius: 50px;
        background: var(--bg-grwhite);
        height: 56px;
        width: 100%;
        overflow: hidden;
        transition: 0.3s;
        box-shadow: rgba(77, 76, 76, 0.2) 0px 3px 5px;
    }

        .nav-menu a i,
        .nav-menu a:focus i {
            font-size: 20px;
        }

        .nav-menu a span,
        .nav-menu a:focus span {
            padding: 0 5px 0 7px;
            color: var(--bg-gray);
        }

        .nav-menu a:hover,
        .nav-menu .active,
        .nav-menu .active:focus,
        .nav-menu li:hover > a {
            color: var(--bg-white);
            background: var(--bg-dark-color);
        }

            .nav-menu a:hover span,
            .nav-menu .active span,
            .nav-menu .active:focus span,
            .nav-menu li:hover > a span {
                color: var(--bg-white);
            }

        .nav-menu a:hover,
        .nav-menu li:hover > a {
            width: 100%;
            color: var(--bg-white);
        }

            .nav-menu a:hover span,
            .nav-menu li:hover > a span {
                display: block;
            }

.dropdown-menu {
    padding: 0;
}

.nav-menu a span,
.nav-menu a:focus span {
    display: none;
    color: var(--bg-white);
}

/* ===== Unified Menu Text Style ===== */
.menu-text,
.nav-menu a span,
.top-header .nav-link,
.dropdown-item,
.nav-menu a,
.nav-text {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #45505b !important;
    letter-spacing: 0.2px;
}

.nav-menu a:hover,
.nav-menu a:hover span,
.dropdown-item:hover,
.top-header .nav-link:hover {
    color: #ffffff !important;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 28px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 0;
    cursor: pointer;
    border-radius: 50px;
    padding: 5px;
}

    .mobile-nav-toggle i {
        color: var(--bg-gray);
    }

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active #header {
        left: 0;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: var(--bg-white);
        background-color: var(--bg-dark-color);
    }

/* start top header section */
.navbar-nav .nav-link {
    color: var(--bg-white);
}

.dropend .dropdown-toggle {
    color: var(--bg-black);
    margin-left: .7rem;
}

.dropdown-item {
    padding: .8rem;
    cursor: pointer;
    background-color: var(--bg-white);
}

.dropend {
    padding: 0.8rem 0rem;
}

li.nav-item.dropend {
    margin-left: .4rem;
}

.dropdown-item:hover {
    background-color: var(--bg-dark-color);
    color: var(--bg-white);
}

.top-header .dropdown .dropdown-menu {
    display: none;
    top: 100%;
    left: 1.5rem;
    box-shadow: rgba(77, 76, 76, 0.2) 0px 1px 2px;
}

.top-header .dropdown:hover > .dropdown-menu,
.top-header .dropend:hover > .dropdown-menu {
    display: block;
    /*  margin-left: 0.25rem;*/
    border: none;
}

.dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
}

.nav-menu a,
.nav-menu a:focus {
    width: 56px;
}

.icon-box {
    border-radius: 0.3rem;
}

.top-navbar ul .nav-item {
    list-style: none;
    padding: 0.5rem;
    font-size: 1.2rem;
    border: 1px solid var(--bg-black);
    border-radius: 0.5rem;
    margin-left: 1rem;
    color: var(--bg-black);
}

.top-header .nav-item > .nav-link {
    margin-left: .5rem;
    border-radius: 2rem;
    color: var(--bg-black);
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.topNavbar .navbar-nav .nav-item {
    margin: .5rem 0;
}

.nav-link svg g path,
.icon-box svg g path {
    fill: var(--bg-dark-color) !important;
}

#header .nav-link:hover svg g path,
#header .nav-link.active svg g path {
    fill: var(--bg-white) !important;
}

.top-header .nav-link.active,
.top-header .nav-link:hover {
    background-color: var(--bg-white);
    color: var(--bg-dark-color);
    box-shadow: rgba(77, 76, 76, 0.2) 0px 1px 2px;
}

.dropdown-toggle::after {
    width: 12px;
    border: none;
    height: 12px;
    margin-left: 1rem;
    background-repeat: no-repeat;
    background-position: center;
    background: url('../img/downarrow.svg');
}

#header .sidebar-list {
    padding-left: 0;
}

/*--------------------------------------------------------------
# Custom Style
--------------------------------------------------------------*/
/* login container */
.left-content {
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(196, 219, 247, 1) 100%);
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custm-lg-form {
    width: 60%;
    margin: 0 auto;
}

.password-contianer {
    position: relative;
}

#toggler {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/*--------------------------------------------------------------
# start main home screen
--------------------------------------------------------------*/
/* NEW - background stretches with content */
.main-container {
    position: relative;
    background-color: #efeff1;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-image: url('../img/commerical-interior-1.png');
}

    .main-container:before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background: rgba(31, 31, 31, 0.6);
        pointer-events: none;
    }


.main-container-image {
    background-image: url('../img/commerical-interior-1.png');
    height: 100vh;
}


/*Removed for responsiveness *BZ 100 */
/*.main-page-content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    text-align: center;
    width: 40%;
}*/

.main-page-content {
    width: 60%; /* adjusts with screen */
    max-width: 900px; /* optional upper limit */
    min-width: 300px; /* optional lower limit */
}


.modal-header {
    background-color: var(--bg-dark-color);
    color: var(--bg-white);
}

.btn {
    min-width: 100px;
}

.btn-primary {
    background-color: var(--bg-dark-color);
    border: 1px solid var(--bg-dark-color);
}

    .btn-primary.active,
    .btn-primary:hover {
        background-color: var(--bg-dark-color);
    }

.top-header .navbar {
    z-index: 99;
    padding: 0;
}

    .top-header .navbar.navbar-dark {
        background-color: var(--bg-white);
    }

.brand-logo img {
    width: 80%;
}

.custom-header {
    background-color: var(--bg-white);
}

.top-header-btn .btn {
    padding: 0.5rem 4rem 0.5rem 2rem;
    border: none;
    border-radius: 0;
    min-height: 56px;
}

    .top-header-btn .btn.dropdown-toggle::after {
        top: 20px;
        position: absolute;
        right: 2.5rem;
    }

.cstm-canvas.offcanvas-start {
    width: 300px;
    top: 70px;
}

.cst-icon {
    border: 0;
    background: none;
    font-size: 28px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 0;
    cursor: pointer;
    border-radius: 50px;
    padding: 5px;
}

/* custom css for swal button */
.swal-button {
    background-color: var(--bg-color);
}

    .swal-button:not([disabled]):hover {
        background-color: var(--bg-color);
    }

.swal-button--cancel {
    color: var(--bg-darkgray);
    background-color: var(--bg-grwhite);
}

.form-range::-webkit-slider-runnable-track {
    background-color: var(--bg-gray-light)
}

.form-range::-webkit-slider-thumb {
    background-color: var(--bg-dark-color);
}

/* end swal button */



.area-width-green {
    background-color: #8fce91;
    font-weight: 401;
    border: none;
}


.view-master-table {
    text-wrap: nowrap;
}

.cst-master-select {
    width: 100%;
    justify-content: space-between;
}

.area-width-blue {
    background-color: #add8e6;
    font-weight: 401;
}

.cst-master-select .btn {
    margin-top: .5rem;
}

.check-input {
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-input-size {
    width: 35px;
    height: 37px;
    margin-bottom: 0.1rem;
    border-radius: 8px;
}

.check-input input {
    margin-top: 0;
}






/* image upload  */
#picture__input {
    display: none;
}

.picture {
    width: 100%;
    height: calc(100vh - 330px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--bg-gray);
    border: 2px dashed currentcolor;
    cursor: pointer;
    font-family: sans-serif;
    transition: color 300ms ease-in-out, background 300ms ease-in-out;
    outline: none;
    overflow: hidden;
    border-radius: 1rem;
    background-color: var(--bg-light-gray);
}

    .picture svg {
        width: 60px;
        height: 60px;
    }

.picture__image {
    background: var(--bg-color);
    padding: 0.5rem 1rem;
    color: var(--bg-white);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.picture:hover {
    color: var(--bg-gray);
    background: var(--bg-grwhite);
}

.picture:active {
    border-color: var(--bg-color);
    color: var(--bg-color);
    background: #eee;
}

.picture:focus {
    color: var(--bg-gray);
    background: var(--bg-grwhite);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.picture__img {
    max-width: 100%;
}

.card-custom {
    box-shadow: rgba(77, 76, 76, 0.2) 0px 3px 5px;
}

/* end image upload */

.update-popup-card {
    min-height: 200px;
}

/* start main container page */

/*.view-master .row {
  --bs-gutter-x: 0.5rem;
}*/


/* check input button */
.quantity {
    display: flex;
    align-items: center;
    padding: 0;
}

.quantity__minus,
.quantity__plus {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
    background: #efeff1;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    font-size: 2rem;
}

    .quantity__minus:hover,
    .quantity__plus:hover {
        background: #6c757d;
        color: #fff;
    }

.quantity__minus {
    border-radius: 3px 0 0 3px;
}

.quantity__plus {
    border-radius: 0 3px 3px 0;
}

.quantity__input {
    width: 300px;
    height: 40px;
    margin: 0;
    padding: 0;
    text-align: center;
    border-top: 2px solid #dee0ee;
    border-bottom: 2px solid #dee0ee;
    border-left: 1px solid #dee0ee;
    border-right: 2px solid #dee0ee;
    background: #fff;
    color: #8184a1;
}

.quantity__minus:link,
.quantity__plus:link {
    color: #8184a1;
}

.quantity__minus:visited,
.quantity__plus:visited {
    color: #000;
}

.pdf-view img {
    max-height: 700px;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bd-violet-bg);
    --bs-tooltip-color: var(--bs-white);
}

.modal-title {
    color: var(--bg-white);
}

.toast {
    --bs-toast-box-shadow: 0;
}

/* *BZ101 removed scrll bar increasing the height*/
/*.main-content-box {
    display: flex;
    justify-content: space-between;*/
/*    height:50px;*/
/*}*/

.profile-image {
    width: 40px;
    height: auto;
}

.profile-edit-image img {
    width: 150px;
    height: auto;
}

.cutom-profile-menu {
    top: 52px !important;
    right: 1.5rem;
    left: inherit !important;
}

.navbar-expand-lg .offcanvas {
    flex-grow: initial;
}

.cutom-profile-menu .dropdown .dropdown-menu {
    top: 20px !important;
    left: -10.3rem !important;
}

.form-control:disabled {
    background-color: transparent;
}

#css-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 300px;
    height: 42px;
    margin: 100px auto 0 auto;
}

.wrapper {
    position: relative;
}

.editableBox {
    width: 75px;
    height: 30px;
}

.timeTextBox {
    width: 54px;
    height: 28px;
    border: none;
    position: absolute;
    top: 1px;
    left: 2px;
    outline: none;
}

.list-group-item.active {
    z-index: 2;
    color: var(--bg-white);
    background-color: var(--bg-color);
    border-color: var(--bg-dark-color);
}

    .list-group-item.active h5 {
        color: var(--bg-white);
    }

.footer-container {
    background-color: #000;
}

.view-master {
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.tab-content {
    max-height: calc(100vh - 377px);
    overflow-y: auto;
    padding: 1rem;
}

.social-links {
    font-size: 1.5rem;
}

.pdf-view object {
    height: 620px;
}

.nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color: var(--bg-color);
    border-bottom: 2px solid var(--bg-dark-color);
}

.checkboxDiv {
    height: 120px;
    overflow-y: scroll;
}

.card-custom .card {
    flex-direction: row;
    flex-wrap: wrap;
}

.card-custom .card-button-section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.csrdCstm label.form-label {
    white-space: nowrap;
    margin-left: 5px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.csrdCstm input#zone_Name {
    max-height: 38px;
}

.csrdCstm .Zone {
    display: flex;
    align-items: center;
}

.editableBox {
    width: 317px;
    height: 37px;
    border-radius: 5px;
    border-color: #ddd;
}

.marginleft {
    margin-right: 10px;
    /*// margin-left: 20px;*/
}

.margin_left {
    margin-left: 10px;
}
/*23-02-2024 new css */

.custm-flex label {
    display: block;
}

.custmregister .error-msg {
    position: absolute;
    /*bottom:-12px;*/
    top: 65px;
    left: 8px;
}

.custm-flex {
    max-height: 210px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px;
    border: 1px solid #e0dada;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 0 4px 0 #0000002e;
}

.arrow-multisect {
    position: absolute;
    right: 10px;
    top: 7px;
}

    .arrow-multisect svg {
        width: 12px;
        height: 12px;
    }
/*04-03-2024 new css */
.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
    border-radius: 50px;
}

.custm-card-h {
    max-height: calc(100vh - 286px);
}

.view-master.custmviewMaster {
    max-height: calc(110vh - 200px); /**KD max-height: calc(110vh - 200px);*/
}

.global-custm-h {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}


/*----10-04-2024----*/
.cstm-justify {
    justify-content: unset !important;
}

.custom-container-zone-setup {
    width: 40%;
}


/*.cstm-width{
    width:350px;
}*/
.cstm-heading {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
}

.cstm-span {
    font-size: 12px;
}
/*--11-.4-2024----*/
.cstm-input-width {
    width: 120px;
}




td, th {
    border: none;
}

#sliderPlaceholder {
    visibility: hidden;
    position: absolute;
    white-space: nowrap;
}

th {
    text-align: center;
}

.time-range-custom {
    width: 31%;
}

.custom-slider {
    height: 1.8rem;
    margin: 0 5px;
    width: 100%;
}

.adjust-slider {
    /*    width: 1.8rem;

    border: 1px solid #888;
    background-color: #f9f9f9;
    color: #333;
    border-radius: 4px;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;*/
}






.button-custom {
    margin-left: 5rem;
}


/* BZ101 added to make inputs smaller for digits, improved borders and shadow effects.*/
.input-small {
    width: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease-in-out;
    border-radius: 4px;
}

.input-medium {
    width: 90px;
}

.form-control {
    border: 0.01px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease-in-out;
    border-radius: 4px;
    text-align: center;
}


    .form-control:focus {
        box-shadow: 0 0 0 2px rgba(100, 100, 255, 0.3);
        outline: none;
    }

    .form-control:hover {
        box-shadow: 0 0 0 2px rgba(150, 150, 255, 0.4);
    }

/* BZ101 Changed the fontsize of h5 headers and their input labels*/

.card-title-lg {
    font-size: 1.15rem; /* slightly bigger than h5 */
    font-weight: 600;
}

.label-lg {
    font-size: 1rem;
    font-weight: 450;
}

/* BZ101 Style for slider */



/* Slider track */
#dualSlider {
    height: 25px;
    background: #ddd;
    border-radius: 5px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    /* Connect bar between thumbs */
    #dualSlider .noUi-connect {
        background: #ccc;
        height: 25px;
        border-radius: 5px;
    }

    /* Shared handle styles */
    #dualSlider .noUi-handle {
        width: 15px;
        height: 33px;
        border: 1px solid #333;
        border-radius: 30%;
        top: -18px;
        cursor: pointer;
        margin-left: 2rem;
        right: 0.01rem;
    }

    /* Left thumb (days - blue) */
    #dualSlider .noUi-handle-upper {
        background-color: var(--bg-color);
        border: 1px solid #333;
        top: 18px;
        width: 15px;
    }

    /* Right thumb (hours - green) */
    #dualSlider .noUi-handle-lower {
        background-color: #8fce91;
        border: 1px solid #333;
    }



/* Container should be relatively positioned */
.position-relative {
    position: relative;
}



/* Hr/Min top-right */
.top-label {
    top: -25px;
    right: 10px;
}

/* Days bottom-right */
.bottom-label {
    bottom: -30px;
    right: 10px;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #5744CC;
    --bg-dark-color: #35288f;
    --bg-white: #fff;
    --bg-gray: #45505b;
    --bg-gray-light: #afafaf;
    --bg-darkgray: #515058;
    --bg-grwhite: #f2f3f5;
    --bg-lightwhite: #ededed;
    --bg-black: #000;
    --bg-light-gray: #cfcdcd;
    --bg-dark-back: #d9d9d9;
}

body {

    font-family: 'Roboto', sans-serif;
    color: var(--bg-darkgray);
    font-size: .9rem;
}

a {
    color: var(--bg-color);
    text-decoration: none;
}

    a:hover {
        color: var(--bg-dark-color);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--bg-darkgray);
}

h1 {
    font-size: 1.7rem;
}

h2 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1rem;
}

.bg-purple {
    background-color: var(--bg-color);
}

    .bg-purple:hover {
        background-color: var(--bg-dark-color);
    }

.bg-purple-color {
    color: var(--bg-color);
}

    .bg-purple-color:hover {
        color: var(--bg-dark-color);
    }

.bg-purple-border {
    border: 1px solid var(--bg-color);
    line-height: 1.2;
}

    .bg-purple-border:hover {
        border: 1px solid var(--bg-dark-color);
        background-color: var(--bg-dark-color);
        color: var(--bg-white);
    }


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    z-index: 10;
    transition: all 0.5s;
    padding: 15px;
    /*overflow-y: auto;*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.nav-menu {
    padding: 0;
    display: block;
}

    .nav-menu * {
        list-style: none;
    }

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
    }

    .nav-menu a,
    .nav-menu a:focus {
        display: flex;
        align-items: center;
        color: var(--bg-gray);
        padding: 10px 18px;
        margin-bottom: 2rem;
        transition: 0.3s;
        font-size: 15px;
        border-radius: 50px;
        background: var(--bg-grwhite);
        height: 56px;
        width: 100%;
        overflow: hidden;
        transition: 0.3s;
        box-shadow: rgba(77, 76, 76, 0.2) 0px 3px 5px;
    }

        .nav-menu a i,
        .nav-menu a:focus i {
            font-size: 20px;
        }

        .nav-menu a span,
        .nav-menu a:focus span {
            padding: 0 5px 0 7px;
            color: var(--bg-gray);
        }

        .nav-menu a:hover,
        .nav-menu .active,
        .nav-menu .active:focus,
        .nav-menu li:hover > a {
            color: var(--bg-white);
            background: var(--bg-dark-color);
        }

            .nav-menu a:hover span,
            .nav-menu .active span,
            .nav-menu .active:focus span,
            .nav-menu li:hover > a span {
                color: var(--bg-white);
            }

        .nav-menu a:hover,
        .nav-menu li:hover > a {
            width: 100%;
            color: var(--bg-white);
        }

            .nav-menu a:hover span,
            .nav-menu li:hover > a span {
                display: block;
            }

.dropdown-menu {
    padding: 0;
}

.nav-menu a span,
.nav-menu a:focus span {
    display: none;
    color: var(--bg-white);
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 28px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 0;
    cursor: pointer;
    border-radius: 50px;
    padding: 5px;
}

    .mobile-nav-toggle i {
        color: var(--bg-gray);
    }

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active #header {
        left: 0;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: var(--bg-white);
        background-color: var(--bg-dark-color);
    }

/* start top header section */
.navbar-nav .nav-link {
    color: var(--bg-white);
}

.dropend .dropdown-toggle {
    color: var(--bg-black);
    margin-left: .7rem;
}

.dropdown-item {
    padding: .8rem;
    cursor: pointer;
    background-color: var(--bg-white);
}

.dropend {
    padding: 0.8rem 0rem;
}

li.nav-item.dropend {
    margin-left: .4rem;
}

.dropdown-item:hover {
    background-color: var(--bg-dark-color);
    color: var(--bg-white);
}

.top-header .dropdown .dropdown-menu {
    display: none;
    top: 100%;
    left: 1.5rem;
    box-shadow: rgba(77, 76, 76, 0.2) 0px 1px 2px;
}

.top-header .dropdown:hover > .dropdown-menu,
.top-header .dropend:hover > .dropdown-menu {
    display: block;
    /*  margin-left: 0.25rem;*/
    border: none;
}

.dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
}

.nav-menu a,
.nav-menu a:focus {
    width: 56px;
}

.icon-box {
    border-radius: 0.3rem;
}

.top-navbar ul .nav-item {
    list-style: none;
    padding: 0.5rem;
    font-size: 1.2rem;
    border: 1px solid var(--bg-black);
    border-radius: 0.5rem;
    margin-left: 1rem;
    color: var(--bg-black);
}

.top-header .nav-item > .nav-link {
    margin-left: .5rem;
    border-radius: 2rem;
    color: var(--bg-black);
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.topNavbar .navbar-nav .nav-item {
    margin: .5rem 0;
}

.nav-link svg g path,
.icon-box svg g path {
    fill: var(--bg-dark-color) !important;
}

#header .nav-link:hover svg g path,
#header .nav-link.active svg g path {
    fill: var(--bg-white) !important;
}

.top-header .nav-link.active,
.top-header .nav-link:hover {
    background-color: var(--bg-white);
    color: var(--bg-dark-color);
    box-shadow: rgba(77, 76, 76, 0.2) 0px 1px 2px;
}

.dropdown-toggle::after {
    width: 12px;
    border: none;
    height: 12px;
    margin-left: 1rem;
    background-repeat: no-repeat;
    background-position: center;
    background: url('../img/downarrow.svg');
}

#header .sidebar-list {
    padding-left: 0;
}

/*--------------------------------------------------------------
# Custom Style
--------------------------------------------------------------*/
/* login container */
.left-content {
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(196, 219, 247, 1) 100%);
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custm-lg-form {
    width: 60%;
    margin: 0 auto;
}

.password-contianer {
    position: relative;
}

#toggler {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/*--------------------------------------------------------------
# start main home screen
--------------------------------------------------------------*/
.main-container {
    position: relative;
    background-color: #efeff1;
    background-size: cover;
    background-position: center;
    z-index: 0;
    width: 100%;
    background-repeat: no-repeat;
    /*min-height: calc(100vh - 56px);*/
    min-height: calc(100vh - 110px);
    background-image: url('../img/commerical-interior-1.png');
}



.main-container:before {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0;
    background: rgba(30, 31, 31, 0.6);
}

.main-page-content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    text-align: center;
    width: 40%;
}

.modal-header {
    background-color: var(--bg-dark-color);
    color: var(--bg-white);
}

.btn {
    min-width: 100px;
}

.btn-primary {
    background-color: var(--bg-dark-color);
    border: 1px solid var(--bg-dark-color);
}

    .btn-primary.active,
    .btn-primary:hover {
        background-color: var(--bg-dark-color);
    }

.top-header .navbar {
    z-index: 99;
    padding: 0;
}

    .top-header .navbar.navbar-dark {
        background-color: var(--bg-white);
    }

.brand-logo img {
    width: 80%;
}

.custom-header {
    background-color: var(--bg-white);
}

.top-header-btn .btn {
    padding: 0.5rem 4rem 0.5rem 2rem;
    border: none;
    border-radius: 0;
    min-height: 56px;
}

    .top-header-btn .btn.dropdown-toggle::after {
        top: 20px;
        position: absolute;
        right: 2.5rem;
    }

.cstm-canvas.offcanvas-start {
    width: 300px;
    top: 70px;
}

.cst-icon {
    border: 0;
    background: none;
    font-size: 28px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 0;
    cursor: pointer;
    border-radius: 50px;
    padding: 5px;
}

/* custom css for swal button */
.swal-button {
    background-color: var(--bg-color);
}

    .swal-button:not([disabled]):hover {
        background-color: var(--bg-color);
    }

.swal-button--cancel {
    color: var(--bg-darkgray);
    background-color: var(--bg-grwhite);
}

.form-range::-webkit-slider-runnable-track {
    background-color: var(--bg-gray-light)
}

.form-range::-webkit-slider-thumb {
    background-color: var(--bg-dark-color);
}

/* end swal button */

.area-width {
    min-width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 0.7rem;
    margin-left: 0.7rem;
    font-size: .8rem;
}

.area-width-green {
    background-color: #8fce91;
    font-weight: 401;
    border: none;
}

.area-width-purple {
    background-color: var(--bg-color);
}


.view-master-table {
    text-wrap: nowrap;
}

.cst-master-select {
    width: 100%;
    justify-content: space-between;
}

    .cst-master-select .btn {
        margin-top: .5rem;
    }

.check-input {
    display: flex;
    justify-content: center;
    align-items: center;
}



.check-input input {
    margin-top: 0;
}




/* image upload  */
#picture__input {
    display: none;
}

.picture {
    width: 100%;
    height: calc(100vh - 330px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--bg-gray);
    border: 2px dashed currentcolor;
    cursor: pointer;
    font-family: sans-serif;
    transition: color 300ms ease-in-out, background 300ms ease-in-out;
    outline: none;
    overflow: hidden;
    border-radius: 1rem;
    background-color: var(--bg-light-gray);
}

    .picture svg {
        width: 60px;
        height: 60px;
    }

.picture__image {
    background: var(--bg-color);
    padding: 0.5rem 1rem;
    color: var(--bg-white);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.picture:hover {
    color: var(--bg-gray);
    background: var(--bg-grwhite);
}

.picture:active {
    border-color: var(--bg-color);
    color: var(--bg-color);
    background: #eee;
}

.picture:focus {
    color: var(--bg-gray);
    background: var(--bg-grwhite);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.picture__img {
    max-width: 100%;
}

/*.card-custom {
  box-shadow: rgba(77, 76, 76, 0.2) 0px 3px 5px;
}*/

/* end image upload */

.update-popup-card {
    min-height: 200px;
}

/* start main container page */

/*.view-master .row {
  --bs-gutter-x: 0.5rem;
}*/


/* check input button */
.quantity {
    display: flex;
    align-items: center;
    padding: 0;
}

.quantity__minus,
.quantity__plus {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
    background: #efeff1;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    font-size: 2rem;
}

    .quantity__minus:hover,
    .quantity__plus:hover {
        background: #6c757d;
        color: #fff;
    }

.quantity__minus {
    border-radius: 3px 0 0 3px;
}

.quantity__plus {
    border-radius: 0 3px 3px 0;
}

.quantity__input {
    width: 300px;
    height: 40px;
    margin: 0;
    padding: 0;
    text-align: center;
    border-top: 2px solid #dee0ee;
    border-bottom: 2px solid #dee0ee;
    border-left: 1px solid #dee0ee;
    border-right: 2px solid #dee0ee;
    background: #fff;
    color: #8184a1;
}

.quantity__minus:link,
.quantity__plus:link {
    color: #8184a1;
}

.quantity__minus:visited,
.quantity__plus:visited {
    color: #000;
}

.pdf-view img {
    max-height: 700px;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bd-violet-bg);
    --bs-tooltip-color: var(--bs-white);
}

.modal-title {
    color: var(--bg-white);
}

.toast {
    --bs-toast-box-shadow: 0;
}

/* *BZ101 removed scrll bar increasing the height*/
.main-content-box {
    display: flex;
    justify-content: space-between;
 
}

.profile-image {
    width: 40px;
    height: auto;
}

.profile-edit-image img {
    width: 150px;
    height: auto;
}

.cutom-profile-menu {
    position: absolute !important;
    right: 2em !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
}
.navbar-expand-lg .offcanvas {
    flex-grow: initial;
}

.cutom-profile-menu .dropdown .dropdown-menu {
    top: 20px !important;
    left: -10.3rem !important;
}

.form-control:disabled {
    background-color: transparent;
}

#css-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 300px;
    height: 42px;
    margin: 100px auto 0 auto;
}

.wrapper {
    position: relative;
}

.editableBox {
    width: 75px;
    height: 30px;
}

.timeTextBox {
    width: 54px;
    height: 28px;
    border: none;
    position: absolute;
    top: 1px;
    left: 2px;
    outline: none;
}

.list-group-item.active {
    z-index: 2;
    color: var(--bg-white);
    background-color: var(--bg-color);
    border-color: var(--bg-dark-color);
}

    .list-group-item.active h5 {
        color: var(--bg-white);
    }

.footer-container {
    background-color: #000;
}

.view-master {
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.tab-content {
    max-height: calc(100vh - 377px);
    overflow-y: auto;
    padding: 1rem;
}

.social-links {
    font-size: 1.5rem;
}

.pdf-view object {
    height: 620px;
}

.nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color: var(--bg-color);
    border-bottom: 2px solid var(--bg-dark-color);
}

.checkboxDiv {
    height: 120px;
    overflow-y: scroll;
}

.card-custom .card {
    flex-direction: row;
    flex-wrap: wrap;
}

.card-custom .card-button-section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.csrdCstm label.form-label {
    white-space: nowrap;
    margin-left: 5px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.csrdCstm input#zone_Name {
    max-height: 38px;
}

.csrdCstm .Zone {
    display: flex;
    align-items: center;
}

.editableBox {
    width: 317px;
    height: 37px;
    border-radius: 5px;
    border-color: #ddd;
}

.marginleft {
    margin-right: 10px;
    /*// margin-left: 20px;*/
}

.margin_left {
    margin-left: 10px;
}
/*23-02-2024 new css */

.custm-flex label {
    display: block;
}

.custmregister .error-msg {
    position: absolute;
    /*bottom:-12px;*/
    top: 65px;
    left: 8px;
}

.custm-flex {
    max-height: 210px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px;
    border: 1px solid #e0dada;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 0 4px 0 #0000002e;
}

.arrow-multisect {
    position: absolute;
    right: 10px;
    top: 7px;
}

    .arrow-multisect svg {
        width: 12px;
        height: 12px;
    }
/*04-03-2024 new css */
.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
    border-radius: 50px;
}

.custm-card-h {
    max-height: calc(100vh - 286px);
}

.view-master.custmviewMaster {
    max-height: 100dvh; /** BZ 101 Fill the screen for differenf devices*/
     /**KD max-height: calc(110vh - 200px);*/
}
/*.global-custm-h {
    max-height: calc(100vh - 210px);
    overflow-y: auto;
}*/


/*----10-04-2024----*/
.cstm-justify {
    justify-content: unset !important;
}

.custom-container {
    margin: 0 auto; /* center horizontally */
    padding: 0;
}


/*.cstm-width{
    width:350px;
}*/
.cstm-heading {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
}

.cstm-span {
    font-size: 12px;
}
/*--11-.4-2024----*/
.cstm-input-width {
    width: 120px;
}




td, th {
    border: none;
}


th {
    text-align: center;
}

.time-range-custom {
    width: 31%;
}

.custom-slider {
    height: 1.8rem;
    margin: 0 5px;
    width: 100%;
}

.adjust-slider {
    width: 1.9rem;
    border: 1px solid #888;
    background-color: #f9f9f9;
    color: #505050;
    border-radius: 4px;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}






.button-custom {
    margin-left: 5rem;
}


/* BZ101 added to make inputs smaller for digits, improved borders and shadow effects.*/
.input-small {
    width: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease-in-out;
    border-radius: 4px;
}


.form-control {
    border: solid 0.1px #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease-in-out;
    border-radius: 4px;
    text-align: center;
}

    .form-control:focus {
        box-shadow: 0 0 0 2px rgba(100, 100, 255, 0.3);
        outline: none;
    }

    .form-control:hover {
        box-shadow: 0 0 0 2px rgba(150, 150, 255, 0.4);
    }

/* BZ101 Changed the fontsize of h5 headers and their input labels*/

.card-title-lg {
    font-size: 1.15rem; /* slightly bigger than h5 */
    font-weight: 600;
}

.label-lg {
    font-size: 1rem;
    font-weight: 450;
}

/* BZ101 Style for slider */

/* Wrapper to position slider + labels */
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
}


/* Slider track */
#dualSlider {
    height: 25px;
    background: #ddd;
    border-radius: 5px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    /* Connect bar between thumbs */
    #dualSlider .noUi-connect {
        background: #ccc;
        height: 25px;
        border-radius: 5px;
    }

    /* Shared handle styles */
    #dualSlider .noUi-handle {
        width: 15px;
        height: 33px;
        border: 1px solid #333;
        border-radius: 30%;
        top: -10px;
        cursor: pointer;
        margin-left: 2rem;
        right: 0.01rem;
    }

    /* Left thumb (days - blue) */
    #dualSlider .noUi-handle-upper {
        background-color: #add8e6;
        border: 1px solid #333;
        top: 10px;
        width: 15px;
    }

    /* Right thumb (hours - green) */
    #dualSlider .noUi-handle-lower {
        background-color: #8fce91;
        border: 1px solid #333;
    }

/* Top-right time label */
.time-label {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 14px;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* Container should be relatively positioned */
.position-relative {
    position: relative;
}

/* Common label style */
.slider-label {
    position: absolute;
    font-size: 12px;
    background: #fff;
    padding: 2px 6px;
    white-space: nowrap;
}

/* Hr/Min top-right */
.top-label {
    top: -25px;
    right: 10px;
}

/* Days bottom-right */
.bottom-label {
    bottom: -30px;
    right: 10px;
}

.noUi-handle {
    box-shadow: none !important;
}


    .noUi-handle:before, .noUi-handle:after {
        display: none !important;
    }

/* Custom checkbox styling */
.checkbox-custom {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #6c63ff; /* Custom border color */
    border-radius: 4px;
    background-color: white; /* Custom background */
    position: relative;
    background-color: white;
    border: 1px solid #d9d9d9;
}

    .checkbox-custom:checked {
        background-color: white; /* Checked background */
    }

        .checkbox-custom:checked::after {
            content: '';
            position: absolute;
            left: 12px;
            top: 5px;
            width: 8px;
            height: 20px;
            border: solid black; /* Checkmark color */
            border-width: 0 3px 3px 0;
            transform: rotate(45deg);
        }

.w-sm-90{
   width:100%;
}

/*******ZONE SCAN*******/
.zone-scan-card {
    width: 85%;
}

.scrollable-table {
    max-height: 500px;
    overflow-y: auto;
    /*    padding-left: 1rem;
    padding-right: 1rem;*/
}

.header {
    position: sticky;
    top: 0
}


.zone-scan-table th,
.zone-scan-table td {
    text-align: center;
    vertical-align: middle;
    white-space: normal;
    font-size: 1.2rem;
    padding-left: 1.8rem;
}

.custom-label {
    font-size: 1.2rem;
}

/*******ZONESETUPEDIT*******/

select:disabled {
    opacity: 0.6 !important; /* or any value you want */
}

.custom-disabled-select:disabled {
    background-color: white;
    border: 1px solid #ccc;
    color: #3b3b3b;
    opacity: 0.6;
}

.custom-disabled-select:hover,
select.custom-disabled-select:hover {
    background-color: #f5f5f5 !important;
    border-color: #ced4da !important;
    box-shadow: none !important;
}

.zone-lable {
    font-size: 1rem;
    font-weight: 500;
    color: #3b3b3b;
    margin-inline-end: 1rem;
}

.set-lable {
    font-size: 1rem;
    font-weight: 500;
    color: #3b3b3b;
    margin-inline-end: 2.2rem;
}

.label-lock {
    font-size: 1rem;
    margin-inline-start: 0.1rem;
    min-width: 50px;
}

.control-zone-button {
    width: 40px; /* less than 6rem */
    height: 36px; /* align better with select height */
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    color: #505050;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .control-zone-button:hover {
        background-color: #f0f0f0;
    }

.zone-nav-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


#zoneId {
   
    text-align: center;
}

    #zoneId:focus,
    #zoneId.active-zone {
        border-color: #6a5acd; /* or your brand color */
        box-shadow: 0 0 0 2px rgba(106, 90, 205, 0.25);
    }


/*.dropdown-toggle::after {
    border-top-color: red;
}*/

/*Safe to remove custom classes July 30, 2025
    main-content-box 
    custom-container 
    card-custom
    edit-zone-card
    global-custm-h
    bg-purple-border
    bg-purple-color

*/

/* Safe override for broken modal state */
.modal-backdrop.show {
    opacity: 0 !important;
    pointer-events: none !important;
}

.section-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Live popup stats: show about 4 rows then scroll */

#pdfLiveStats {
   
    overflow-y: auto;
    padding-right: 6px;
}

/*PDF Viewer */
/* The whole PDF area */
#pdfViewport {
    padding: 1rem 0.5rem;
}

#pdfRoot {
    width: 100%;
}

.pdf-page {
    margin:auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    overflow: hidden;
    width: fit-content;
}


/* Marker "pill" */
.pdf-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-dark-color);
    color: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.10);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

 .pdf-marker:hover {
   background: var(--bg-dark-color);
    }
/* Preview marker while adding */
.pdf-marker-preview {
    opacity: 0.75;
    filter: saturate(0.9);
}
hr {
    margin: 0.5rem 0;
}
/* Live popup panel (match your UI) */
.pdf-live-popup {
    position: fixed;
    top: 80px;
    left: 20px;
    resize: both;
    overflow: auto;
    height: 226px;
    min-width: 314px;
    min-height: 100px;
    max-width: 500px;
    background: #fff;
    color: var(--bg-darkgray);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
    z-index: 2000;
    font-size: 0.9rem;
}
.pdf-live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    font-weight: 800;
    cursor: move;
    background: var(--bg-color);
    color: var(--bg-white);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.pdf-live-body {
  
    overflow: auto;
    padding: 10px 12px;
}
/* Live value line under marker text (Show All) */
.pdf-marker-live {
    display: block;
    margin-top: 2px;
    font-size:0.85rem;
    font-weight: 600;
    opacity: 0.95;
}
.pdf-marker-showall .pdf-marker-live {
    display: block;
}
.pdf-live-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.stat-label {
    font-weight: 800;
}
.stat-values {
    opacity: 0.9;
}
/* Tooltip (match cards) */
.pdf-live-tooltip {
    position: fixed;
    z-index: 2000;
    background: #fff;
    color: var(--bg-darkgray);
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    font-size: 12px;
    min-width: 190px;
    max-width: 260px;
    word-wrap: break-word;
    pointer-events: auto;
}
.pdf-live-tooltip-title {
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--bg-dark-color);
}
.pdf-live-tooltip.d-none {
    display: none;
}
/* Clock widget (theme-aligned) */
.pdf-clock-widget {
  position: absolute;
  padding: 8px 10px;
  background: var(--bg-dark-color);
  color: var(--bg-white);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  user-select: none;
  z-index: 1600;
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}
.pdf-clock-widget.is-update {
    outline: 2px dashed rgba(255,255,255,0.85);
    cursor: move;
}
/* Export toast */
.pdf-export-toast {
    position: fixed;
    top: 90px; /* distance from top */
    right: 20px; /* distance from right */
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
    padding: 12px 14px;
    z-index: 4000; /* must be above popup & viewer */
    min-width: 240px;
}
.pdf-export-toast.hidden {
        display: none;
}

.toast-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.toast-title {
    font-weight: 700;
    color: var(--bg-darkgray);
}
.toast-x {
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 16px;
    cursor: pointer;
    color: #666;
}
.toast-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

#dynamicUI {
    position: relative;
    z-index: 10;
}