﻿body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.container-fluid.nopadding {
    position: relative;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

#mainContent {
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
}

#banner {
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    width: 100%;
    left: 0;
    right: 0;
    padding: 0px;
    background-color: #f1f1f1 !important;
    border-bottom-style: ridge;
}
@media (max-width: 600px) {
    #helpInfo, #userInfo {
        display: none !important;
    }
}

#map {
    top: 60px;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    bottom: auto;
    left: 0;
    right: 0;
    position: absolute;
}

#menu {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 300px;
    max-height: 500px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background-color: #ffffff;
    border: 3px solid #888;
    border-radius: 8px;
    padding: 20px;
    overflow-y: auto;
}

    #menu.hidden {
        transform: translateX(320px);
    }

    #menu .card-header button {
        font-size: 14px;
    }

    #menu .card-body button {
        font-size: 14px;
    }

    #menu .card-body{
        padding: 1rem;
    }

#toggleButton {
    position: absolute;
    top: calc(70px + 10px);
    left: 320px;
    width: 40px;
    height: 50px;
    z-index: 1001;
    padding: 10px;
    background-color: #fff;
    color: white;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: left 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid grey;
    border-radius: 8px;
}

    #toggleButton.hidden {
        left: 10px;
    }

    #toggleButton:hover {
        background-color: #0056b3;
    }

.nopadding {
    padding-left: 0px;
    padding-right: 0px;
}
.padding-right-3 {
    padding-right: 3px;
}
.padding-left-3 {
    padding-left: 3px;
}

.margin-bottom-3 {
    margin-bottom: 3px;
}

.margin-top-3 {
    margin-top: 3px;
}

.info-panel {
    position: absolute;
    bottom: 30px;
    right: 10px;
    width: 350px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    display: none;
}

.info-header {
    display: flex;
    justify-content: space-between;
}

.close-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.info-content {
    margin-top: 10px;
}

.detailInfo-panel {
    position: absolute;
    right: 0px;
    width: 350px;
    min-height: 200px;
    max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px);
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    border-radius: 8px;
    border: 3px solid rgb(0,96,100);
    padding: 10px;
    display: none;
}

    .detailInfo-panel.open {
        display: flex;
        flex-direction: column;
    }

    .detailInfo-panel .info-row {
        display: flex;
        align-items: center;
        padding: 4px 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .detailInfo-panel .info-icon {
        width: 30px;
        text-align: center;
        font-size: 16px;
        color: #007bff;
    }

    .detailInfo-panel .info-label {
        width: 100px;
        font-weight: bold;
        font-size: 14px;
        padding-left: 5px;
        white-space: nowrap;
    }

    .detailInfo-panel .info-value {
        flex: 1;
        font-size: 14px;
        text-align: left;
        padding-left: 10px;
        overflow-wrap: break-word;
    }

    .detailInfo-panel table {
        width: 100%;
    }

    .detailInfo-panel thead th {
        width: 20%;
        text-align: center;
    }

    .detailInfo-panel .info-block {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .detailInfo-panel .block-icon {
        width: 40px;
        flex-shrink: 0;
        text-align: center;
        font-size: 24px;
        color: #007bff;
    }

    .detailInfo-panel .block-icon img {
        width: 40px;
        object-fit: contain;
    }

    .detailInfo-panel .block-content {
        flex: 1;
        margin-left: 8px;
    }

        .detailInfo-panel .block-content .info-row {
            display: flex;
            padding: 2px 0;
        }

            .detailInfo-panel .block-content .info-row .label {
                width: 120px;
                color: rgb(0,96,100);
                font-size: 14px;
                margin-left: 20px;
            }

            .detailInfo-panel .block-content .info-row .value {
                flex: 1;
                color: #555;
                word-break: break-word;
                font-size: 14px;
            }

    .detailInfo-panel .scenario-table {
        width: 100%;
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .detailInfo-panel tbody tr td {
        width: 20%;
        text-align: center;
    }

        .detailInfo-panel tbody tr td:nth-child(1),
        .detailInfo-panel thead th:nth-child(1) {
            width: 29%;
        }

        .detailInfo-panel tbody tr td:nth-child(2),
        .detailInfo-panel thead th:nth-child(2) {
            width: 35%;
        }

        .detailInfo-panel tbody tr td:nth-child(3),
        .detailInfo-panel thead th:nth-child(3) {
            width: 35%;
        }

    /*.detailInfo-panel .row-label {
        width: 7rem;
    }*/

#detailInfoContent {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

#toggleDetailInfoBtn {
    position: absolute;
    top: calc(50vh + 30px);
    right: 350px;
    z-index: 1002;
    width: 30px;
    height: 60px;
    padding: 0;
    font-weight: 900;
    background-color: white;
    color: white;
    border-radius: 8px 0 0 8px;
    border: 3px solid rgb(0,96,100);
    border-right: none;
    cursor: pointer;
    transition: right 0.2s ease;
}
    #toggleDetailInfoBtn img {
        width: 25px;
        object-fit: contain;
    }

    #toggleDetailInfoBtn.hidden {
        right: 0;
    }

.detailInfo-panel.collapsed {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.list-group-item {
    cursor: pointer;
    font-size: 13px;
    padding: .5rem 1rem
}

    .list-group-item:hover {
        background-color: #f1f1f1;
    }

    .list-group-item input[type="radio"],
    .list-group-item input[type="checkbox"] {
        margin-right: 10px;
    }

.modal-dialog {
    top:10vh;
    max-width: 500px;
    z-index: 1050;
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
}

#searchInfoModal .table-scroll-300 {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
}

    #searchInfoModal .table-scroll-300 .table {
        margin-bottom: 0;
        table-layout: auto;
        width: max-content;
        min-width: 100%;
    }

        #searchInfoModal .table-scroll-300 .table th,
        #searchInfoModal .table-scroll-300 .table td {
            white-space: nowrap;
        }

@media (max-width: 767.98px) {
    #searchInfoModal .table-scroll-300 .table {
        min-width: 640px;
    }
}

.table-fixed-header thead th {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 
        /*inset 0 -1px 0 #dee2e6,*/
        inset 0 1px 0 #dee2e6;
}

.table-fixed-header th,
.table-fixed-header td {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

#menu, #importModal .modal-body, #queryModal .modal-body {
    overflow-y: auto;
}

    #menu::-webkit-scrollbar, #importModal .modal-body::-webkit-scrollbar, #queryModal .modal-body::-webkit-scrollbar {
        width: 12px;
    }

    #menu::-webkit-scrollbar-track, #importModal .modal-body::-webkit-scrollbar-track, #queryModal .modal-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    #menu::-webkit-scrollbar-thumb, #importModal .modal-body::-webkit-scrollbar-thumb, #queryModal .modal-body::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

        #menu::-webkit-scrollbar-thumb:hover, #importModal .modal-body::-webkit-scrollbar-thumb:hover, #queryModal .modal-body::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1051;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    border: 16px solid #7a5e5e;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.loading-text {
    margin-top: -80px; 
    font-size: 24px;
    color: #3498db;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 20px;
    background-color: #6c757d;
    color: white;
    border-radius: 5px;
    border: 2px solid #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1052;
    display: none;
    font-size: 24px;
    max-width: 300px;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

    .notification.error {
        background-color: #f44336;
        border: 2px solid #f44336;
    }*/

.notification-wrapper {
    position: fixed;
    top: 18%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 1080;
    pointer-events: none;
}

.notification-toast {
    min-width: 320px;
    max-width: 420px;
    width: calc(100vw - 2rem);
    pointer-events: auto;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .25);
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .2rem;
    box-shadow: 0 .15rem .5rem rgba(0, 0, 0, .2);
    background-color: #6c757d;
    color: #fff;
}
    .notification-toast.hide {
        display: none;
    }

    .notification-toast .toast-header {
        background-color: #6c757d;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        font-weight: 600;
    }

        .notification-toast .toast-header .close {
            color: #fff;
            opacity: 0.9;
            text-shadow: none;
        }

            .notification-toast .toast-header .close:hover {
                opacity: 1;
            }

        .notification-toast .toast-header small {
            color: rgba(255, 255, 255, 0.85) !important;
        }

    .notification-toast .toast-body {
        font-size: 1rem;
        line-height: 1.5;
        color: #fff;
        word-break: break-word;
        white-space: normal;
        background-color: #6c757d;
    }

    .notification-toast.toast-normal {
        background-color: #6c757d;
        border-color: rgba(0, 0, 0, 0.15);
    }

        .notification-toast.toast-normal .toast-header,
        .notification-toast.toast-normal .toast-body {
            background-color: #6c757d;
            color: #fff;
        }

    .notification-toast.toast-error {
        background-color: #dc3545;
        border-color: rgba(0, 0, 0, 0.15);
    }

        .notification-toast.toast-error .toast-header,
        .notification-toast.toast-error .toast-body {
            background-color: #dc3545;
            color: #fff;
        }

        .notification-toast.toast-error .toast-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }

            .notification-toast.toast-error .toast-header small,
            .notification-toast.toast-error .toast-header .close {
                color: #fff !important;
            }

@media (max-width: 576px) {
    .notification-wrapper {
        top: 12%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 1.5rem);
    }

    .notification-toast {
        width: 100%;
        min-width: auto;
        max-width: none;
    }
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

    .input-group[class*=col-] {
        float: none;
        padding-right: 0;
        padding-left: 0
    }

    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
        resize: none
    }
        .input-group .form-control:focus {
            z-index: 3
        }

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px
}

select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn, textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn {
    height: auto
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px
}

select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn, textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn {
    height: auto
}

.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell
}

    .input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
        border-radius: 0
    }

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

    .input-group-addon.input-sm {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 3px
    }

    .input-group-addon.input-lg {
        padding: 10px 16px;
        font-size: 18px;
        border-radius: 6px
    }

    .input-group-addon input[type=checkbox], .input-group-addon input[type=radio] {
        margin-top: 0
    }

    .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .input-group-addon:first-child {
        border-right: 0
    }

    .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .input-group-addon:last-child {
        border-left: 0
    }

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

    .input-group-btn > .btn {
        position: relative
    }

        .input-group-btn > .btn + .btn {
            margin-left: -1px
        }

        .input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover {
            z-index: 2
        }

    .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
        margin-right: -1px
    }

    .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
        z-index: 2;
        margin-left: -1px
    }

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        background-color: #f0f0f0;
        padding: 5px;
        color: #007bff;
        margin-bottom: 0.5rem;
        display: block;
    }

    .form-group .form-control {
        border: 1px solid #007bff;
    }

#searchInfoModal .modal-dialog {
    min-width: 80vw;
}
@media (min-width: 1000px) {
    #searchInfoModal .modal-dialog {
        min-width: 900px;
    }
}

#searchInfoModal .row-label {
    width: 7rem;
}

#locationInput #categoryInput {
    width: 40vw;
}

.icon-red { 
    filter: hue-rotate(143deg);
}

.icon-purple {
    filter: hue-rotate(50deg);
}

.icon-green {
    filter: hue-rotate(250deg);
}

.active-style {
    border: 3px solid #007bff;
    color: #007bff;
    padding: 4px;
    border-radius: 4px;
}

#authRedirectModal {
    z-index: 1060 !important;
}

.leaflet-control-coordinate-info {
    background: rgba(255, 255, 255, 0.96);
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
    font-size: 11px;
    line-height: 1.4;
    color: #333;
    white-space: nowrap;
    margin-bottom: 2px !important;
    margin-left: 5px !important;
}

    .leaflet-control-coordinate-info .coord-row {
        margin: 0;
    }

    .leaflet-control-coordinate-info .coord-label {
        font-weight: bold;
        margin-right: 4px;
    }

.finmap-legend {
    background: rgba(255, 255, 255, 0.96);
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    min-width: 180px;
    max-width: 240px;
    font-size: 12px;
    line-height: 1.4;
    color: #333;
}

    .finmap-legend .legend-title {
        font-weight: bold;
        margin-bottom: 6px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 4px;
    }

    .finmap-legend .legend-item {
        display: flex;
        align-items: center;
        margin-bottom: 4px;
    }

    .finmap-legend .legend-color {
        display: inline-block;
        width: 16px;
        height: 12px;
        margin-right: 8px;
        border: 1px solid #999;
        box-sizing: border-box;
    }

    .finmap-legend .legend-empty {
        color: #666;
    }

.leaflet-control-minimap {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    overflow: hidden;
}

#assetInquiryModal {
    --ai-visible-rows: 4;
    --ai-head-h: 46px;
    --ai-row-h: 52px;
    --ai-scrollbar-h: 16px;
    --ai-table-w: 1320px;
}

    #assetInquiryModal .asset-inquiry-dialog {
        width: auto;
        max-width: min(95vw, 1400px);
        margin: 1rem auto;
    }

    #assetInquiryModal .asset-inquiry-content {
        display: flex;
        flex-direction: column;
        max-height: none;
    }

    #assetInquiryModal .asset-inquiry-body {
        flex: 1 1 auto;
        max-height: none !important;
        overflow: visible !important;
        padding-bottom: 12px;
    }

    #assetInquiryModal .asset-inquiry-container {
        height: auto;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    #assetInquiryModal .asset-inquiry-search-group {
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
    }

        #assetInquiryModal .asset-inquiry-search-group .btn {
            min-width: 120px;
        }

    #assetInquiryModal .asset-inquiry-table-row {
        flex: 0 0 auto;
        min-height: 0;
    }

        #assetInquiryModal .asset-inquiry-table-row > div {
            min-height: 0;
        }

    #assetInquiryModal .asset-inquiry-table-panel {
        min-width: 0;
    }

    #assetInquiryModal .asset-inquiry-table-wrap {
        height: calc(var(--ai-head-h) + var(--ai-row-h) * var(--ai-visible-rows) + var(--ai-scrollbar-h));
        min-height: calc(var(--ai-head-h) + var(--ai-row-h) * var(--ai-visible-rows) + var(--ai-scrollbar-h));
        max-height: calc(var(--ai-head-h) + var(--ai-row-h) * var(--ai-visible-rows) + var(--ai-scrollbar-h));
        width: 100%;
        overflow-x: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border: 1px solid #dee2e6;
        background: #fff;
    }

    #assetInquiryModal .asset-inquiry-table {
        table-layout: fixed;
        margin-bottom: 0;
        width: var(--ai-table-w);
        min-width: var(--ai-table-w);
        max-width: var(--ai-table-w);
    }

        #assetInquiryModal .asset-inquiry-table th,
        #assetInquiryModal .asset-inquiry-table td {
            vertical-align: middle;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            box-sizing: border-box;
        }

        #assetInquiryModal .asset-inquiry-table thead th {
            position: relative;
            height: var(--ai-head-h);
            user-select: none;
            padding-right: 14px;
            background: #fff;
        }

        #assetInquiryModal .asset-inquiry-table tbody td {
            height: var(--ai-row-h);
            padding: 8px 10px;
        }

    #assetInquiryModal .asset-inquiry-cell-num {
        text-align: right;
    }

    #assetInquiryModal .asset-inquiry-action-cell {
        text-align: center;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        padding-left: 6px;
        padding-right: 6px;
    }

        #assetInquiryModal .asset-inquiry-action-cell .btn {
            min-width: 42px;
            padding: 0.25rem 0.45rem;
        }

    #assetInquiryModal .asset-inquiry-pagination-nav {
        flex-shrink: 0;
        margin-top: 10px;
        padding-top: 6px;
        min-height: 42px;
        background: #fff;
    }

        #assetInquiryModal .asset-inquiry-pagination-nav .pagination {
            margin-bottom: 0;
            flex-wrap: wrap;
        }

    #assetInquiryModal .asset-inquiry-col-resizer {
        position: absolute;
        top: 0;
        right: -4px;
        width: 8px;
        height: 100%;
        cursor: col-resize;
        z-index: 5;
        background: transparent;
    }

    #assetInquiryModal .asset-inquiry-table thead th:hover .asset-inquiry-col-resizer {
        background: rgba(0, 123, 255, 0.12);
    }

body.asset-inquiry-col-resizing,
body.asset-inquiry-col-resizing * {
    cursor: col-resize !important;
    user-select: none !important;
}

@media (max-width: 1199.98px) {
    #assetInquiryModal .asset-inquiry-dialog {
        max-width: calc(100vw - 1rem);
        margin: 0.5rem auto;
    }
}

@media (max-width: 767.98px) {
    #assetInquiryModal .asset-inquiry-dialog {
        max-width: calc(100vw - 0.5rem);
    }

    #menu {
        top: 68px;
        max-height: calc(100dvh - 88px);
    }

    #toggleButton {
        top: 78px;
    }
}