﻿.nav-tabs .nav-link.active {
    /* horizontal offset | vertical offset | blur | spread | color */
    box-shadow: 0 -0.25rem 0.5rem rgba(var(--ins-body-color-rgb), 0.2);
}

.app-topbar {
    background-color: var(--ins-body-bg);
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.page-title-head {
    background:none;
    border:none;
}

.header {
    /* only apply shadow if .page-title-head does NOT exist */
}


.footer-padding {
    padding-bottom: 4rem; /* adjust based on footer height */
}

.footer {
    background-color: var(--ins-body-bg);
}

body:not(:has(.page-title-head)) .app-topbar {
    box-shadow: var(--ins-box-shadow-sm);
}
.choices-container .choices {
    width: 100%;
}

@media (min-width: 768px) { /* md and up */
    .choices-container .choices {
        width: 75%;
    }
}

.footer-container {
    max-width: 600px; /* adjust as needed */
    width: 100%;
}

.unit-ratio-container .choices {
    width: 100%;
    margin-bottom: 0;
}

/* ✨ The offcanvas itself */
.mini-offcanvas {
    z-index: 2001 !important;
    width: 50px !important;
    height: 179px !important;
    top: 40vh !important; /* vertically centered */
    border-radius: 12px 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-offcanvas-services {
    z-index: 2001 !important;
    width: 50px !important;
    height: 170px !important;
    top: 40vh !important; /* vertically centered */
    border-radius: 12px 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 22px;
}

.mini-handle {
    z-index: 2000 !important;
    position: fixed;
    top: 50%;
    right: 0;
    width: 22px;
    height: 60px;
    background: white;
    color: grey;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: right 0.25s ease;
}

.offcanvas.show ~ .mini-handle {
    right: -40px; /* hide off the screen */
}

.card .modal {
    z-index: 2050 !important;
}

