﻿:root {
    --c01: #68bbbb;
    --c01-rgb: 104, 187, 187;
    --c02: #68bbbb;
    --c02-rgb: 104, 187, 187;
    --c02-text: #25262b;
    --c02-text-rgb: 37, 38, 43;
    --c01-text: #25262b;
    --c01-text-rgb: 37, 38, 43;
    --font-title: 'Roboto Slab';
    --font-text: 'Raleway';
    --c01-bg: #ffffff;
    --c02-bg: #f5f5f5;
    --c03-bg: #ececec;
    --c04-bg: #25262b;
    --bs-nav-link-hover-color: var(--c01);
    --modal-tab-not-active-bg-color: #dcdcdc;
    --modal-bg-color: #f2f2f2;
    --alert-priority-opacity: 0.6;
    --alert-priority-opaque-opacity: 0.3;
    --color-subtle-sidebar: #e2e3e5;
    --purple-rgb: 133, 64, 245;
}

.sidebar-active-option {
    background-color: var(--bs-nav-link-hover-color) !important;
    color: var(--color-subtle-sidebar) !important;
}
    .sidebar-active-option.accordion-selected {
        color: var(--color-subtle-sidebar) !important;
    }

.form-check-main {
    background-color: #fee9d0;
    border-radius: 5px;
}

.form-floating > .form-control::placeholder {
    color: revert;
    font-size: small;
}

.form-floating > .form-control:not(:focus)::placeholder {
    color: transparent;
}

.hover-div:hover {
    transform: scale(1.02);
    transition: transform 0.2s;
    cursor: pointer;
}

[data-bs-theme=light] {
    --bg-color-report-title: var(--c04-bg);
    --border-color-refresh: gray;
    --line-color: black;
    --color-report-title: white;
    --sidebar-hover-opacity: 0.9;
    --modal-button-hover-bg-color: 0,0,0;
    --modal-button-hover-color: 255,255,255;
    --bs-collpased-offcanvas: rgb(200,200,200);
}

[data-bs-theme=dark] {
    --bg-color-report-title: var(--c03-bg);
    --border-color-refresh: #878786;
    --line-color: white;
    --color-report-title: #878786;
    --sidebar-hover-opacity: 0.2;
    --modal-button-hover-bg-color: 255,255,255;
    --modal-button-hover-color: 0,0,0;
    --bs-collpased-offcanvas: rgb(90,90,90);
}

html {
    position: relative;
    min-height: 100%;
    height: 100%;
    font-size: 14px;
    transition: 0.5s;
    color: var(--c02-text);
    scrollbar-color: var(--c01) white;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
        height: 100%;
    }
}

body {
    margin-bottom: 60px;
    font-family: var(--font-text);
    color: var(--c01-text)
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title) !important;
}

input {
    color: var(--c02-text) !important;
}

.offcanvas-bottom {
    border-top-color: transparent !important;
}

#reporttitle ínput {
    color: white !important;
}

::selection {
    background-color: var(--c01);
    color: var(--c01-text);
}

.leaflet-layerstree-children .leaflet-layerstree-header:not(.leaflet-layerstree-header-pointer)::before {
    content: ' ➜ '
}

.leaflet-layerstree-header-pointer::before {
    content: "📂"
}

.leaflet-layerstree-node:has(> .leaflet-layerstree-children.leaflet-layerstree-hide) .leaflet-layerstree-header-pointer::before {
    content: "📁"
}

.leaflet-control-layers-overlays:has(> .leaflet-layerstree-children.leaflet-layerstree-hide) .leaflet-layerstree-header-pointer::before {
    content: "📁"
}

.leaflet-control-layers-base:has(> .leaflet-layerstree-children.leaflet-layerstree-hide) .leaflet-layerstree-header-pointer::before {
    content: "📁"
}

[class="btn"] {
    background-color: var(--c01);
    color: var(--c02-text);
}

.btn.btn-hover:hover {
    text-decoration: none;
    background-color: rgba(var(--modal-button-hover-bg-color), 0.2);
    color: var(--modal-button-hover-color);
    opacity: 1;
}

[class="btn"]:hover {
    background-color: rgba(var(--c01-rgb), 0.8);
    color: white;
}

.role-card {
    border: 1px solid var(--c01);
}

.text-muted {
    color: rgba(var(--c02-text-rgb), 0.7) !important;
}

.above_map {
    position: absolute !important;
    z-index: 1;
    margin-left: 1%;
    margin-top: 1%;
}

thead {
    position: sticky;
    top: 0;
    background-color: var(--c01-bg);
}

#bottomNabvar {
    height: 100px;
}

.dropdown-item.active {
    background-color: var(--c01);
}

.dropdown-menu .active .bi {
    display: block !important;
}

.textarea,
textarea.form-control {
    min-height: 120px;
}


.backgroundDarkMode {
    background-color: var(--bs-body-bg);
    color: var(--bs-dark-text-emphasis);
}

    .backgroundDarkMode:hover {
        background-color: var(--bs-body-bg);
        color: var(--bs-dark-text-emphasis);
    }

    .backgroundDarkMode.collapsed {
        background-color: var(--bs-body-bg);
    }

/* REPORT */
.gray-bar {
    position: relative;
}

    .gray-bar::after {
        content: "";
        background-color: var(--line-color);
        position: absolute;
        height: 1px;
        left: 50px;
        right: 45vh;
        top: 50%;
        z-index: -1;
    }

.reporttitle {
    width: 95%;
    background-color: var(--bg-color-report-title);
    min-height: 70px;
    color: var(--color-report-title);
    border: 1px solid var(--line-color);
}

.reportfa {
    color: var(--c01);
}

.backgroundDarkModeReport {
    background-color: rgb(200,200,200);
    color: black;
    border: 1px solid black;
}

    .backgroundDarkModeReport:hover {
        background-color: var(--c01);
        color: white;
        border: 1px solid black;
    }

        .backgroundDarkModeReport:hover .reportfa {
            color: white;
        }

    .backgroundDarkModeReport.active, .backgroundDarkModeReport.active .reportfa {
        background-color: var(--c01);
        color: white;
        border: 1px solid var(--c01);
    }

.refreshbutton {
    color: white !important;
    border: 1px solid var(--border-color-refresh);
}

    .refreshbutton:hover, .refreshbutton:focus {
        color: white !important;
        border: 1px solid var(--border-color-refresh);
        background-color: var(--c01-text);
    }

#mapa {
    position: static !important;
}


/* SIDEBAR */
.sidebar-arrow-up {
    background: linear-gradient(rgba(0, 0, 0, 0.2) 70%, rgba(255, 255, 255, 0) 100%);
    border: none;
    height: 60px;
    transition: 0.3s ease;
    z-index: 2000;
    width: 50px;
}

.sidebar-arrow-down {
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.2) 30%);
    border: none;
    height: 60px;
    transition: 0.3s ease;
    z-index: 2000;
    width: 50px;
}

.sidebar-arrow-up:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
}

.sidebar-arrow-down:hover {
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4) 30%);
}

.sidebar-container {
    background-color: black;
    position: fixed;
    height: 100vh;
    width: 50px;
    z-index: 1050;
    top: 0;
    right: 0;
    transition: 0.5s ease-out;
}

.sidebar {
    min-height: 100vh;
    width: 50px;
    position: absolute;
    z-index: 1050;
    top: 0;
    right: 0;
    background-color: var(--bs-body-bg);
    transition: 0.5s ease-out;
    padding-top: 60px;
    white-space: nowrap;
    border-left: 1px solid black;
}

.sidebar-folder {
    -webkit-clip-path: polygon(25px 0, 100% 0, 100% 100%, -700px 100%, -700px 30px, 0px 30px);
    clip-path: polygon(25px 0, 100% 0, 100% 100%, -700px 100%, -700px 30px, 0px 30px);
    /*clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%, 0 30px);*/
}

.sidebar-container-folder {
    -webkit-clip-path: polygon(24px 0, 100% 0, 100% 100%, -700px 100%, -700px 29px, 0px 29px);
    clip-path: polygon(24px 0, 100% 0, 100% 100%, -700px 100%, -700px 29px, 0px 29px);
    /*clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 29px);*/
}

.sidebar-dropdown-menu {
    transition: 0.5s;
    background-color: var(--bs-border-color-translucent);
}

.sidebar-dropdown-menu.dropdown-menu {
    width: 200px;
}

.sidebar-dropdown-content {
    transition: 0.5s;
    border: 1px solid var(--bs-border-color-translucent);
    background-color: var(--bs-body-bg);
}

.sidebar a, button {
    padding: 8px 12px 8px 12px;
    text-decoration: none;
    font-size: var(--bs-body-font-size);
    color: rgba(var(--c01-text-rgb), 0.8);
    display: block;
}

.sidebar a:hover {
    background-color: rgba(var(--bs-emphasis-color-rgb), var(--sidebar-hover-opacity));
    color: var(--c01);
}

.sidebar a:focus {
    color: var(--c01);
}

.accordion-selected {
    background-color: rgba(var(--bs-emphasis-color-rgb), var(--sidebar-hover-opacity));
    color: var(--c01) !important;
}

main .sidebar {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.icon-text {
    vertical-align: middle;
}

.material-icons {
    padding-bottom: 3px;
    padding-right: 10px;
    vertical-align: middle;
}

.sidebartransition {
    transition: 0.5s;
}

#HOMEPAGE, #DASHBOARD {
    transition: 0.5s;
}


.ml2 {
    margin-left: 2px;
}

.mt10 {
    margin-top: 10px !important;
}

/* HEAT MAP */
.fit-picture {
    width: 36px;
    height: auto;
}

.main-dropdown {
    display: none;
    max-height: 150px;
    overflow-y: hidden;
    border-radius: 10px;
    z-index: 999999;
    background-color: var(--bs-body-bg);
    border: 1px solid var(--c01);
}

.cursor-pointer {
    cursor: pointer;
}

/* ALERT TABLES AND FILTERS */
.table-alert-priority-1 {
    background-color: rgba(247, 56, 0, var(--alert-priority-opacity));
    color: black;
    border-radius: 5px;
}

.table-alert-priority-2 {
    background-color: rgba(247, 94, 0, var(--alert-priority-opacity));
    color: black;
    border-radius: 5px;
}

.table-alert-priority-3 {
    background-color: rgba(247, 134, 0, var(--alert-priority-opacity));
    color: black;
    border-radius: 5px;
}

.table-alert-priority-4 {
    background-color: rgba(247, 178, 0, var(--alert-priority-opacity));
    color: black;
    border-radius: 5px;
}

.table-alert-priority-5 {
    background-color: rgba(247, 217, 0, var(--alert-priority-opacity));
    color: black;
    border-radius: 5px;
}

.table-alert-priority-6 {
    background-color: rgba(247, 255, 0, var(--alert-priority-opacity));
    color: black;
    border-radius: 5px;
}

.table-opaque-alert-priority-1 {
    background-color: rgba(247, 56, 0, var(--alert-priority-opaque-opacity));
    color: black;
}

.table-opaque-alert-priority-2 {
    background-color: rgba(247, 94, 0, var(--alert-priority-opaque-opacity));
    color: black;
}

.table-opaque-alert-priority-3 {
    background-color: rgba(247, 134, 0, var(--alert-priority-opaque-opacity));
    color: black;
}

.table-opaque-alert-priority-4 {
    background-color: rgba(247, 178, 0, var(--alert-priority-opaque-opacity));
    color: black;
}

.table-opaque-alert-priority-5 {
    background-color: rgba(247, 217, 0, var(--alert-priority-opaque-opacity));
    color: black;
}

.table-opaque-alert-priority-6 {
    background-color: rgba(247, 255, 0, var(--alert-priority-opaque-opacity));
    color: black;
}

.tablepriority {
    --bs-table-bg: #f7ff0000;
    border-color: black !important;
}

.spinner-border {
    animation: none !important;
    border: none !important;
}

/* input number remove arrows */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Responsividade */
@media (min-width: 2100px) {
    .col-xxxl-1 {
        flex: 0 0 auto;
        width: 8%;
    }
    .col-xxxl-2 {
        flex: 0 0 auto;
        width: 16.5%;
    }
    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xxxl-4 {
        flex: 0 0 auto;
        width: 33%;
    }
    .col-xxxl-5 {
        flex: 0 0 auto;
        width: 41%;
    }
    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xxxl-7 {
        flex: 0 0 auto;
        width: 58%;
    }
    .col-xxxl-8 {
        flex: 0 0 auto;
        width: 67%;
    }
    .col-xxxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xxxl-10 {
        flex: 0 0 auto;
        width: 84%;
    }
    .col-xxxl-11 {
        flex: 0 0 auto;
        width: 92%;
    }
    .col-xxxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.center-element-div {
    display: flex;
    justify-content: center;
}

.align-vertical {
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 0px) {
    .title-h1 {
        font-size: calc(1.4rem + 0.9vw);
    }
    .padding-title {
        padding-right: 0.1vw !important;
        padding-left: 3rem !important;
    }
}

@media (min-width: 1500px) {
    .title-h1 {
        font-size: 2.5rem;
    }
    .padding-title {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
}

.modal {
    position: absolute;
    z-index: 1050;
    overflow: hidden;
    margin-top: 50vh;
    margin-left: 50vw;
    padding: 0 !important;
    padding-right: 50px;
    width: 50vw !important;
    max-width: 50vw !important;
    height: 50vh;
    transition: 0.5s !important;
    overflow-y: auto;
}

@media screen and (max-width: 1399px) {
    .modal {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: 0vw !important;
    }
}

.modal-open {
    overflow-y: auto !important;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 95%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--modal-bg-color);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
    overflow: hidden;
    overflow-y: auto;
    margin: auto;
    transition: 0.5s;
}

.modal-dialog {
    padding-top: 1%;
    height: 50vh;
    margin: 0;
    transition: 0.5s !important;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 100% !important;
        margin: 0;
        transition: 0.5s !important;
    }
}

.modal-header {
    background-color: var(--c01);
    color: white;
    z-index: 2100 !important;
}
    .modal-header button:not(.btn-outline-danger, .btn-outline-secondary) {
        color: white;
    }

.modal-header .btn-close {
    filter: invert();
    font-weight: bold;
    opacity: 1;
}

.modal .nav-tabs .nav-link.active {
    background-color: var(--modal-bg-color);
    border-color: var(--bs-border-color) var(--bs-border-color) var(--modal-bg-color);
}
.modal .nav-tabs .nav-link:not(.active) {
    background-color: var(--modal-tab-not-active-bg-color);
}

.modal-header button:not(.btn-outline-danger, .btn-outline-secondary):hover {
    text-decoration: none;
    background-color: rgba(var(--modal-button-hover-bg-color), 0.2);
    color: var(--modal-button-hover-color);
    opacity: 1;
}

.modal .modal-footer {
    position: sticky;
    bottom: 0;
}
 
.modal .btn-close:hover {
    text-decoration: none;
    background-color: rgba(var(--modal-button-hover-color), 0.2);
    color: var(--modal-button-hover-bg-color);
    opacity: 1;
}

.font-size-resp {
    font-size: calc(0.9rem + 0.1vw)
}

#RightSide-Main {
    transition: 0.5s;
}

.bg-nav-item {
    background-color: var(--c01);
    color: #e2e3e5 !important;
}

.tooltip-bigger {
    --bs-tooltip-max-width: 400px !important;
    /*--bs-tooltip-bg: var(--c01);
    --bs-tooltip-color: white;*/
}

/* LOGS TABLES */
.table-log-create {
    background-color: rgba(201, 242, 155, 1);
    color: black;
}

.table-log-update {
    background-color: rgba(255, 252, 127, 0.6);
    color: black;
}

.table-log-remove {
    background-color: rgba(254, 121, 104, 0.6);
    color: black;
}

.tb-hover tbody tr td:hover {
    background-color: rgba(0,0,0,0.1);
}

/* Blocked Users and Banned Users */
.watermark {
    height: 100%;
    width: 100%;
    z-index: 1050;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.5s;
    overflow-x: hidden;
    white-space: nowrap;
}

.icon-ban {
    height: 100%;
    font-size: 30rem;
    color: rgba(255, 0, 0, 0.2);
    margin: auto;
    width: 100%;
    justify-content: center;
    display: flex !important;
    align-items: center;
}

.icon-block {
    height: 100%;
    font-size: 21rem;
    color: rgba(207, 159, 255,0.6);
    margin: auto;
    width: 100%;
    justify-content: center;
    display: flex !important;
    align-items: center;
}
.icon-verified {
    height: 100%;
    font-size: 30rem;
    color: rgba(189, 195, 199);
    margin: auto;
    width: 100%;
    justify-content: center;
    display: flex !important;
    align-items: center;
}

.btn-outline-blocked {
    --bs-btn-color: rgb(127, 0, 255);
    --bs-btn-border-color: rgb(127, 0, 255);
    --bs-btn-border-radius: .5rem;
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: rgba(127, 0, 255,0.80);
    --bs-btn-hover-border-color: rgba(127, 0, 255,0.80);
    --bs-btn-focus-shadow-rgb: rgb(127, 0, 255);
    --bs-btn-active-color: rgb(127, 0, 255);
    --bs-btn-active-bg: #{shade-color(rgb(127, 0, 255), 20%)};
    --bs-btn-active-border-color: #{shade-color(rgb(127, 0, 255), 20%)};
}

.btn-outline-main {
    --bs-btn-color: rgb(var(--c01-rgb));
    --bs-btn-border-color: rgb(var(--c01-rgb));
    --bs-btn-border-radius: .5rem;
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: rgba(var(--c01-rgb),0.80);
    --bs-btn-hover-border-color: rgba(var(--c01-rgb),0.80);
    --bs-btn-focus-shadow-rgb: rgb(var(--c01-rgb));
    --bs-btn-active-color: rgb(var(--c01-rgb));
    --bs-btn-active-bg: #{shade-color(rgb(var(--c01-rgb)), 20%)};
    --bs-btn-active-border-color: #{shade-color(rgb(var(--c01-rgb)), 20%)};
}

.btn-outline-indigo {
    --bs-btn-color: indigo;
    --bs-btn-border-color: rgb(75, 0, 130);
    --bs-btn-border-radius: .5rem;
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: rgba(75, 0, 130,0.80);
    --bs-btn-hover-border-color: rgba(75, 0, 130,0.80);
    --bs-btn-focus-shadow-rgb: rgb(75, 0, 130);
    --bs-btn-active-color: rgb(75, 0, 130);
    --bs-btn-active-bg: #{shade-color(rgb(75, 0, 130), 20%)};
    --bs-btn-active-border-color: #{shade-color(rgb(75, 0, 130), 20%)};
}
.btn-check + .btn:hover, .btn-check:checked + .btn {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.btn:hover:not(a) i.fa-file-import {
    color: white;
}

.btn.btn-outline-main.active, .btn.btn-outline-main.active i, .btn.btn-outline-main.show, .btn.btn-outline-main.show i {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.btn.btn-outline-main.disabled, .btn.btn-outline-main.disabled i {
    color: var(--bs-btn-hover-color);
    background-color: rgba(var(--c01-rgb),0.50);
    border-color: var(--bs-btn-hover-border-color);
}



.modal table {
    --bs-table-bg: var(--modal-bg-color) !important;
}

.border-main {
    border: 1px solid rgb(var(--c01-rgb));
}

.border-bottom-main {
    border-bottom: 1px solid rgb(var(--c01-rgb));
}

.border-top-main {
    border-top: 1px solid rgb(var(--c01-rgb));
}

.color-main {
    color: rgb(var(--c01-rgb));
}

.class-card-header {
    background-color: var(--c01);
    color: white;
}

.form-control.danger-focus, .form-select.danger-focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.125);
}

.modal-body, .modal-footer {
    z-index: 2000;
}

:root {
    --bs-nav-link-hover-color: var(--c01);
}

.form-control:focus {
    border-color: var(--c01);
    box-shadow: 0 0 0 0.25rem rgb(var(--c01-rgb), .25);
}

.text-title {
    font-family: var(--font-text) !important;
}

.text-c01 {
    color: var(--c01-text) !important;
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    line-height: 1.2;
}

.fw-regular {
    font-weight: 400;
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 3rem;
    }
}

.form-check-input:focus, .form-select:focus {
    border-color: var(--c01);
    box-shadow: 0 0 0 0.25rem rgb(var(--c01-rgb), .25);
}

.form-check-input:checked, .form-select:checked {
    background-color: var(--c01);
    border: 1px solid var(--c01);
}



select option:focus {
    /*box-shadow: 0 0 10px 100px var(--c01) inset !important;*/
    background-color: var(--c01);
    color: var(--c02-text);
}

.btn-home-alert {
    background-color: var(--bs-white);
}

/*.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}*/

/* Hide default HTML checkbox */
/*.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}*/

/* The slider */
/*.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}*/

/* Rounded sliders */
/*.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }*/

/* https://uiverse.io/namecho/quiet-panther-93 */
.switch {
    --button-width: 3em;
    --button-height: 1.5em;
    --toggle-diameter: 1em;
    --button-toggle-offset: calc((var(--button-height) - var(--toggle-diameter)) / 2);
    --toggle-shadow-offset: 10px;
    --toggle-wider: 3em;
    --color-grey: #cccccc;
    --color-green: #4296f4;
}

.slider {
    display: inline-block;
    width: var(--button-width);
    height: var(--button-height);
    background-color: var(--c01);
    border-radius: calc(var(--button-height) / 2);
    position: relative;
    transition: 0.3s all ease-in-out;
}

    .slider::after {
        content: "";
        display: inline-block;
        width: var(--toggle-diameter);
        height: var(--toggle-diameter);
        background-color: #fff;
        border-radius: calc(var(--toggle-diameter) / 2);
        position: absolute;
        top: var(--button-toggle-offset);
        transform: translateX(var(--button-toggle-offset));
        box-shadow: var(--toggle-shadow-offset) 0 calc(var(--toggle-shadow-offset) * 4) rgba(0, 0, 0, 0.1);
        transition: 0.3s all ease-in-out;
    }

.switch input[type="checkbox"]:checked + .slider {
    background-color: var(--c01);
}

    .switch input[type="checkbox"]:checked + .slider::after {
        transform: translateX(calc(var(--button-width) - var(--toggle-diameter) - var(--button-toggle-offset)));
        box-shadow: calc(var(--toggle-shadow-offset) * -1) 0 calc(var(--toggle-shadow-offset) * 4) rgba(0, 0, 0, 0.1);
    }

.switch input[type="checkbox"] {
    display: none;
}

    .switch input[type="checkbox"]:active + .slider::after {
        width: var(--toggle-wider);
    }

    .switch input[type="checkbox"]:checked:active + .slider::after {
        transform: translateX(calc(var(--button-width) - var(--toggle-wider) - var(--button-toggle-offset)));
    }

.w-05 {
    width: 5%;
}

.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.h-05 {
    height: 5%;
}

.h-10 {
    height: 10%;
}

.h-20 {
    height: 20%;
}

.h-30 {
    height: 30%;
}

.h-40 {
    height: 40%;
}

.h-60 {
    height: 60%;
}

.h-70 {
    height: 70%;
}

.h-80 {
    height: 80%;
}

.h-90 {
    height: 90%;
}

.report-chart {
    height: 50vh;
    width: 100%;
    position: absolute;
    visibility: hidden;
}

.tooltip-card {
    min-width: 100px;
    max-width: 300px;
    border: 2px solid var(--c01);
    border-radius: 5px;
    background-color: white;
}

.tooltip.show {
    opacity: 1;
}

.tooltip-arrow::before {
    pointer-events: none;
    border: 0.625rem solid rgba(0,0,0,0);
    border-top-color: var(--c01) !important;
    width: 10px !important;
    margin-top: 2px;
    color: var(--c01)
}

.tooltip-inner {
    padding: 5px;
    color: black;
    text-align: center;
    width: 100%;
    max-width: 100%;
    background-color: rgba(var(--c01-rgb), 0.1);
}

.bg-delete {
    background-color: rgba(255, 0, 0, 0.2);
}

.text-wrap {
    white-space: pre-wrap
}

.find-dropdown {
    position: absolute;
    width: 100%;
    display: none;
    max-height: 150px;
    overflow-y: auto;
    border-radius: 10px;
    z-index: 100;
    background-color: var(--bs-body-bg);
    border: 1px solid var(--c01);
}

.autocomplete-option {
    padding: 5px;
    cursor: pointer;
    border-bottom: 1px solid var(--c01);
}

.autocomplete-option:hover {
    background-color: #f0f0f0;
}

@keyframes slider {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    49% {
        transform: translateX(-230px);
        opacity: 1;
    }
    50% {
        transform: translateX(-230px);
        opacity: 0;
    }
    51% {
        transform: translateX(160px);
        opacity: 0;
    }
    52% {
        transform: translateX(160px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes slider {
    0% {
        -webkit-transform: translateX(0);
        opacity: 1;
    }

    49% {
        -webkit-transform: translateX(-230px);
        opacity: 1;
    }

    50% {
        -webkit-transform: translateX(-230px);
        opacity: 0;
    }

    51% {
        -webkit-transform: translateX(160px);
        opacity: 0;
    }

    52% {
        -webkit-transform: translateX(160px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        opacity: 1;
    }
}

.animation-slide.hovered span, .animation-slide.hovered i {
    animation: slider 4.5s;
}

.animation-slide.accordion-selected.sidebar-active-option {
    color: var(--color-subtle-sidebar) !important;
}

.animation-slide span.icon-text {
    position: absolute;
    z-index: 1051;
}

.animation-slide:hover i {
    z-index: 1052;
    position: relative;
}

button.bnt-validate:hover {
    text-decoration: none;
    background-color: rgba(var(--modal-button-hover-bg-color), 0.2);
    color: var(--modal-button-hover-color);
    opacity: 1;
}

#carouselUserDocuments div div.carousel-item img {
    transition: 1s ease;
}


.inline-edit-input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 2px 5px;
}

.icon-wrapper {
    position: relative;
    display: inline-flex;
    width: 1.3em; /* Match fa-lg */
    height: 1.33em;
    font-size: inherit;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}

.base-icon {
    font-size: 1.33em;
    line-height: 1;
}

.corner-icon {
    position: absolute;
    bottom: -0.6em;
    right: -0.75em;
    font-size: 0.72em;
    background: white;
    border-radius: 50%;
    padding: 0.2em;
    line-height: 1;
    color: red;
}

.bg-purple {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--purple-rgb), var(--bs-bg-opacity)) !important;
}
.copy-on-click {
    cursor: pointer;
    position: relative;
}

    .copy-on-click:hover {
        background-color: #f3f3f3;
    }

.copied-feedback {
    color: green;
    margin-left: 10px;
    font-size: 0.85em;
}

.station_physical_occupied {
    color:#7030a0; 
}

.bg_station_physical_occupied {
    background-color : #7030a0;
}


.station_physical_available {
    color: #00b050;
}

.bg_station_physical_available {
    background-color: #00b050;
}



.station_virtual_occupied {
    color: #ff80ff;
}

.bg_station_virtual_occupied {
    background-color: #ff80ff;
}


.station_virtual_available {
    color: #92d050;
}

.bg_station_virtual_available {
    background-color: #92d050;
}


/* Enforce fixed column layout */
.station-table {
    width: 100%;
    table-layout: fixed; /* ensures consistent column widths */
}

    /* Column widths */
    .station-table th:nth-child(1),
    .station-table td:nth-child(1) {
        width: 70%; /* Station Name - smaller */
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .station-table th:nth-child(2),
    .station-table td:nth-child(2) {
        width: 13%; /* Physical Places - larger */
    }

    .station-table th:nth-child(3),
    .station-table td:nth-child(3) {
        width: 13%; /* Virtual Places - larger */
    }

    .station-table th:nth-child(4),
    .station-table td:nth-child(4) {
        width: 2%; /* Status icon or similar */
    }

    .station-table th:nth-child(5),
    .station-table td:nth-child(5) {
        width: 2%; /* View / Action icon */
    }

    /* Limit internal div width */
    .station-table .inner-cell {
        max-width: 80%; /* or 70%, or any fixed value like 400px */
        margin: 0 auto; /* center it */
    }