:root {
    --dark-gray: #91a39f;
    --gray: #e9edec;
    --light-gray: #f4f5f3;
    --green: #7dc4b2;
    --light-green: #7dc4b2;
    --black: #2c363f;
    --light-blue: #94BAE6;
    --dark-green: #4BA68F;

    --background-color: #F7F9FB;
    --text-color: #161B1F;
    --background-card-header: #E9EDEC;
    --manually-added: #FBEEC1;

    --nav-icon: #91A39F;
    --nav-icon-active-background-color: #DBEDEB;
    --nav-icon-active-color: #4BA68F;

    --glass-blur: 11px;
    --glass-saturation: 160%;
    --glass-card-alpha-top: 0.24;
    --glass-card-alpha-bottom: 0.18;
    --glass-card-fallback-top: 0.92;
    --glass-card-fallback-bottom: 0.86;
    --glass-border-alpha: 0.28;
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.48), inset 0 -12px 24px -24px rgba(255, 255, 255, 0.6);
    --glass-radius: 18px;
    --glass-backdrop-blur: 6px;
    --glass-backdrop-saturation: 130%;
    --glass-backdrop-tint: rgba(18, 22, 26, 0.35);
    --glass-backdrop-fallback: rgba(18, 22, 26, 0.5);
    --z-dropdown: 2000;
    --z-dropdown-popover: 2005;
    --z-dropdown-label: 2001;
    --z-nav-popout: 2100;
    --z-modal-backdrop: 3000;
    --z-modal: 3100;
}

body {
    font-size: 13px;
    color: #333333;
    background-color: var(--background-color);
}

select {
    border: none;
}

.box-shadow {
    margin-bottom: 10px;
}

.navbar-brand {
    background: transparent !important;
    border: none;
    box-shadow: none;
    padding-bottom: 0;
}

.navbar-brand-text {
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    color: #203A45;
    text-transform: lowercase;
}

.navbar-brand-logo {
    display: block;
    width: auto;
    height: calc(26px * 1.3);
}

.lada-portfolio-shell-header {
    display: none;
}

.bg-white {
    background-color: var(--background-color) !important;
}

.bg-blue {
    background-color: #31708E !important;
    color: #FFFFFF !important;
}

.bg-dark {
    background-color: #2C363F !important;
    color: #FFFFFF !important;
}

.bg-dark-green {
    background-color: #254E58 !important;
    color: #FFFFFF !important;

}

.bg-green {
    background-color: #326E5F !important;
    color: #FFFFFF !important;
}

.nav-link {
    color: #91A39F;
    font-size: 16px;
}

li.active-item {
    background-color: var(--nav-icon-active-background-color) !important;
    font-weight: 600 !important;
}

-- only hover if it has a link as child
li:not([aria-expanded="true"]):has(a):hover {
    background-color: var(--nav-icon-active-background-color) !important;
}

li > a {
    width: 100%;
    display: block;
}

.user-icon {
    font-size: 18px;
}

.user-dropdown {
    position: relative;
    width: 34px;
    height: 34px;
}

.user-dropdown-toggle {
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
}

.user-dropdown-toggle::after {
    display: none;
}

.user-initials-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 600;
    text-transform: uppercase;
}

.user-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 8px);
    right: 0;
    left: auto !important;
    z-index: var(--z-dropdown);
    font-size: 12px;
}

.dropdown-menu {
    z-index: var(--z-dropdown);
}

.right-navigation-list-group {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.right-navigation-list-group > li {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    font-size: 13px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    padding-left: 25px;
    margin-bottom: 0px !important;

}

.right-navigation-list-group > li:not(:first-child) {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    padding-left: 45px !important;
}

.list-group-item:first-child {
    margin-top: 0px;
    border-bottom: 1px solid #2C363F !important;
}

.right-navigation-list-group > li > a {
    color: #2C363F;
}

.right-navigation-list-group > li:not(:first-child) {
    padding-left: 35px !important;
}

.table-output {
    width: 100%;
    background: var(--background-color);
}

.table-output > thead > tr, .table-output > tbody > tr {
    border-bottom: 1px solid #697E79 !important;
}

.table-output > thead > tr > th, .table-output > tbody > tr > td {
    font-size: 10px;
    padding: 9px;
}

.table-output-tr-calculation {
    background-color: #697E79 !important;
    color: var(--background-color) !important;
    font-weight: bold;
}
.table-output-tr-calculation > td {
    border-right: 1px solid #dddddd !important;
}

.table-custom-input {
    width: fit-content;
    min-width: 80px;
    background: transparent;
    border: 1px solid transparent;
    text-align: left;
}

.table-custom-input:focus {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
 }

 .loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid var(--green); /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.table-title {
    background-color: #FFFFFF !important;
    color: var(--black) !important;
    text-align: center;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 18px;
    font-weight: 550;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.table-title-left {
    text-align: left;
    padding-left: 12px;
}

.table-title-chart {
    margin-bottom: 0px;
}

.table-title-secondary {
    background-color: #FFFFFF !important;
    color: var(--black) !important;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.table-title.lada-chart-download-host {
    position: relative;
    padding-right: 36px;
}

.lada-chart-wrapper {
    position: relative;
}

.lada-chart-download-single {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    background: #FFFFFF;
    color: #b8c0c7;
    padding: 4px;
    border-radius: 4px;
    line-height: 1;
    z-index: 2;
    cursor: pointer;
}

.lada-chart-download-single:hover {
    color: #0D1524;
}

.table-th {
    background-color: #FFFFFF !important;
    color: var(--black) !important;
    padding: 9px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.table-th-sticky {
    position: sticky;
    top: 0;
    z-index: 1;
}

.table-th-first {
    width: 250px;
}

table th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

table th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

table th {
    border-top: none !important;
}

.table-th-first, .table-th-property {
    background-color: #FFFFFF !important;
    border-right: var(--light-gray) 1px solid !important;
}

.lada-assumptions-table td:nth-child(2), .lada-assumptions-table th:nth-child(2) {
    border-right: 1px solid var(--gray) !important;
}


.table-th-property {
    width: 150px;
}

.table-th-segment {
    background-color: #FFFFFF !important;
    width: 150px;
}

.table-th-min-width-100 {
    min-width: 100px;
}


.table-td-even {
    /*background-color: #DBDBDB;*/
    padding: 9px !important;
    font-size: 13px;
    /*border-right: 3px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;*/
    text-align: center;
}

.table-td-odd {
    /*background-color: #EDEDED;*/
    padding: 9px !important;
    font-size: 13px;
    /*border-right: 3px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;*/
    text-align: center;
}


tr > th:last-child, tr > td:last-child {
    border-right: none;
}


.table-td-disabled {
    --background-color: var(--light-gray) !important;
    color: var(--black);
    padding: 9px !important;
    font-size: 13px;
    text-align: center;
}

.table-td-disabled input {
    color: var(--black) !important;
    font-weight: 700;
}

.btn-primary {
    background-color: var(--gray);
    color: var(--black);
    border: none;
    padding: 20px;
}

.btn-primary:hover {
    background-color: var(--light-gray);
    color: var(--black);
}

.table-td-first {
    padding-left: 20px !important;
    text-align: left !important;
}

.table-td-contract-assumption-even > .lada-input {
    background-color: var(--light-blue) !important;
}
.table-td-contract-assumption-odd > .lada-input {
    background-color: var(--light-blue) !important;
}

.table-td-contract-even {
    /*background-color: var(--light-blue) !important;*/
}
.table-td-contract-odd {
    /*background-color: var(--light-blue) !important;*/

}

.table-td-property-assumption-even {
    background-color: var(--light-blue) !important;
}
.table-td-property-assumption-odd {
    background-color: var(--light-blue) !important;
}
.table-td-segment-assumption-even {
    background-color: var(--light-blue) !important;
}
.table-td-segment-assumption-odd {
    background-color: var(--light-blue) !important;
}

.table-td-organization-assumption-even {}
.table-td-organization-assumption-odd {}

.table-td-default-even {
    background-color: #CDD0D1 !important;
}
.table-td-default-odd {
    background-color: #E8E9EB !important;
}

.table-td-none-even {
    /*background-color: #CDD0D1 !important;*/
}
.table-td-none-odd {
    /*background-color: #E8E9EB !important;*/
}



.table-td-fixed-33 {
    width: 33%;
}

.table-td-15 {
    width: 15%;
}

.table-td-12 {
    width: 12%;
}
.table-td-28 {
    width: 28%;
}

.table-td-40 {
    width: 40%;
}


.table-td-50 {
    width: 50%;
}

.quarter-inflation-input {
    width: 200px;
    border: none;
    background: transparent;
    text-align: center;
}

#chart-inflation-line {
    margin-bottom: 50px;
}

.td-checkbox {
    float: right;
    width: 15px;
    height: 15px;
}

.turnover-forecast-year {
    width: 50px;
}

.turnover-rate {
    width: 50px;
}

.download-csv, .upload-csv {
    float: right;
    margin-right: 15px;
    color: #FFFFFF;
    font-size: 15px;
}

.download-csv:hover, .upload-csv:hover {
    color: #FFFFFF;
}


.lada-key-indicator, .lada-vue-key-indicator {
    background-color: #FFFFFF;
    color: var(--black);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 10px;
}

.lada-key-indicator .lada-key-indicator-name, .lada-vue-key-indicator .lada-vue-key-indicator-name {
    font-size: 20px;
    font-weight: medium;
}

.lada-key-indicator .lada-key-indicator-value, .lada-vue-key-indicator .lada-vue-key-indicator-value {
    font-size: 30px;
    font-weight: light;
}

.lada-key-indicator .lada-key-indicator-value-type, .lada-vue-key-indicator .lada-vue-key-indicator-value-type {
    font-size: 18px;
}

.lada-title-indicator, .lada-vue-title-indicator {
    text-align: right;
    display: inline-block;
    font-size: 14px;
    margin-left: 40px;
}

.lada-title-indicators-container > .lada-title-indicator,
.lada-title-indicators-container > .lada-vue-title-indicator {
    margin-left: 0;
    margin-top: 9px;
    min-width: 130px;
    max-width: 180px;
    flex: 1 1 140px;
}

.lada-title-indicator .lada-key-indicator-name, .lada-vue-title-indicator .lada-key-indicator-name {
    font-size: 12px;
    font-weight: 500;
}

.lada-title-indicator .lada-key-indicator-value, .lada-vue-title-indicator .lada-key-indicator-value {
    font-size: 20px;
    font-weight: 700;
}
.lada-title-indicator .lada-key-indicator-value-type, .lada-vue-title-indicator .lada-key-indicator-value-type {
    font-size: 11px;
    font-weight: 500;
}

.lada-title-indicator-selector {
    position: relative;
}

.lada-vue-title-indicator.lada-title-indicator-selector {
    height: 48px;
    margin-top: 7px;
}

.lada-vue-title-indicator.lada-title-indicator-selector .lada-key-indicator-name.lada-title-indicator-selector-label {
    height: 18px;
    padding-top: 0;
    padding-bottom: 0;
}

.lada-title-indicator-selector-label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px;
    border-radius: 4px;
    position: relative;
}

.lada-title-indicator-selector-label:hover {
    background: #f2f6f8;
}

.lada-title-indicator-selector-chevron {
    font-size: 15px;
    margin-left: 2px;
}

.lada-vue-title-indicator.lada-title-indicator-selector .lada-title-indicator-selector-chevron {
    height: 18px;
    padding-bottom: 0;
    margin-bottom: 5px;
}

.lada-title-indicator-selector-menu {
    position: absolute;
    right: 0;
    top: 30px;
    min-width: 132px;
    width: 132px;
    padding: 4px 0;
    background: #ffffff;
    border: 1px solid #d5dfe5;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    z-index: var(--z-dropdown);
}

.lada-title-indicator-selector-option {
    width: 100%;
    padding: 6px 12px;
    background: none;
    border: none;
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
}

.lada-title-indicator-selector-option:hover {
    background: #f2f6f8;
}

.lada-custom-select {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 230px;
    background-color: #dbedeb;
    border-radius: 12px;
    overflow: hidden;
}

.lada-custom-select .lada-title-indicator-selector-label {
    background-color: #dbedeb;
    border: none;
    border-radius: 12px;
    color: var(--black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    height: 30px;
    justify-content: space-between;
    line-height: 1;
    outline: none;
    padding: 2px 10px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    z-index: var(--z-dropdown-label);
}

.lada-custom-select .lada-title-indicator-selector-label:hover,
.lada-custom-select .lada-title-indicator-selector-label:focus {
    background-color: #dbedeb;
    outline: none;
    box-shadow: none;
}

.lada-custom-select .lada-title-indicator-selector-menu {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    min-width: 100%;
    width: 100%;
    text-align: left;
    z-index: var(--z-dropdown);
    background: #dbedeb;
    border-left: 1px solid #dbedeb;
    border-right: 1px solid #dbedeb;
    border-bottom: 1px solid #dbedeb;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0;
    transition: max-height 160ms ease, opacity 160ms ease;
}

.lada-custom-select.is-open .lada-title-indicator-selector-menu {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    padding: 0 0 4px;
    overflow-y: auto;
}

.lada-custom-select .lada-title-indicator-selector-option {
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
}

.lada-custom-select .lada-title-indicator-selector-option:focus,
.lada-custom-select .lada-title-indicator-selector-option:focus-visible {
    outline: none;
    box-shadow: none;
}

.lada-custom-select-row {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.lada-custom-select-row .lada-title-indicator-selector-option {
    flex: 1;
    background: transparent;
    border: none;
}

.lada-custom-select-row:hover {
    background: #f2f6f8;
}

.lada-custom-select-row.is-more-open {
    background: #f2f6f8;
}

.lada-custom-select-row .lada-title-indicator-selector-option:hover {
    background: transparent;
}

.lada-custom-select-more-trigger {
    background: transparent;
    border: none;
    color: var(--black);
    font-size: 24px;
    line-height: 1;
    padding: 0 6px;
    padding-bottom: 8px;
    margin-top: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
}

.lada-custom-select-more-trigger:focus,
.lada-custom-select-more-trigger:focus-visible {
    outline: none;
    box-shadow: none;
}

.lada-custom-select-row:hover .lada-custom-select-more-trigger,
.lada-custom-select-row:focus-within .lada-custom-select-more-trigger,
.lada-custom-select-row.is-more-open .lada-custom-select-more-trigger {
    opacity: 1;
    pointer-events: auto;
}

.lada-custom-select-more-popover {
    position: fixed;
    background: #ffffff;
    border: 1px solid #b1dcd1;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    padding: 4px 0;
    min-width: 150px;
    opacity: 0;
    pointer-events: none;
    z-index: var(--z-dropdown-popover);
}

.lada-custom-select-more-popover.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lada-custom-select-more-item {
    background: transparent;
    border: none;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    text-align: left;
    width: 100%;
}

.lada-custom-select-more-item i {
    font-size: 14px;
}

.lada-custom-select-more-item:hover {
    background: #f2f6f8;
}

.lada-custom-select-more-item.is-disabled {
    color: #9ca6ab;
    cursor: not-allowed;
}

.lada-custom-select-more-item.is-hidden {
    display: none;
}

.lada-custom-select-change-folder,
.lada-custom-select-new-scenario {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #dbedeb;
    border-bottom: 1px solid #b1dcd1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lada-custom-select-change-folder i,
.lada-custom-select-new-scenario i {
    font-size: 14px;
}

.lada-custom-select-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.lada-table-fixed-width-11 th {
    width: 8%;
}
.lada-table-fixed-width-10 th {
    width: 10%;
}

.lada-table, .lada-vue-table {
    width: 100%;
    background-color: #FFFFFF;
    overflow: auto;
}

table {

    border-radius: 7px;
}

.lada-table thead, .lada-vue-table thead {
    background-color: #FFFFFF !important;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.lada-table > thead > tr > th {
    font-size: 11px;
    text-align: left;
}

.lada-table > tbody > tr > td, .lada-table > tfoot > tr > td, .lada-table > tfoot > tr > th {
    font-size: 12px;
    text-align: left;
}

.lada-vue-table > thead > tr > th {
    font-size: 11px;
    text-align: left;
}

.lada-vue-table > tbody > tr > td, .lada-vue-table > tfoot > tr > td, .lada-vue-table > tfoot > tr > th {
    font-size: 12px;
    text-align: left;
}

.lada-table > thead > tr > th, .lada-vue-table > thead > tr > th {
    text-align: left;
}

.lada-table > tfoot > tr > th, .lada-vue-table > tfoot > tr > th {
    border-top: 1px solid var(--gray);
}


tr:hover td {
    background: var(--gray) !important;
}

tr:hover td {
    background: var(--gray) !important;
}



.lada-action-td {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

/* when hovering over the tr of a lada-table, display the child with the class lada-action-td */
tr .lada-action-td button {
    visibility:hidden;
    border: none;
}

tr:hover .lada-action-td button {
    visibility: visible;
}



.lada-table > thead > tr > th:last-child, .lada-table > tbody > tr > td:last-child, .lada-table > tfoot > tr > td:last-child, .lada-table > tfoot > tr > th:last-child {
    /*border-right: none;*/
}


.lada-table > thead > tr > th, .lada-table > tfoot > tr > td, .lada-table > tfoot > tr > th {
    /*background-color: #2C363F;
    color: #FFFFFF;*/
    color: var(--black);
    font-weight: bold;
    border-bottom: 1px solid var(--gray);
}

.lada-vue-table > thead > tr > th, .lada-vue-table > tfoot > tr > td, .lada-vue-table > tfoot > tr > th {
    /*background-color: #2C363F;
    color: #FFFFFF;*/
    color: var(--black);
    font-weight: bold;
}

.lada-table > tbody > tr > td {
    color: var(--black);
    font-size: 12px;
}

.lada-vue-table > tbody > tr > td {
    color: var(--black);
    font-size: 12px;
}

.lada-table > tbody > tr:nth-child(even) > td {
    /*background-color: #DBDBDB;*/
}

.lada-table > tbody > tr:nth-child(odd) > td {
    /*background-color: #EDEDED;*/
}

.lada-table > tbody > tr > td:first-child, .lada-table > tbody > tr > th:first-child, .lada-table > thead > tr > th:first-child, .lada-table > tfoot > tr > td:first-child, .lada-table > tfoot > tr > th:first-child {
    text-align: left;
    padding-left: 25px;
}

.lada-vue-table > tbody > tr > td:first-child, .lada-vue-table > tbody > tr > th:first-child, .lada-vue-table > thead > tr > th:first-child, .lada-vue-table > tfoot > tr > td:first-child, .lada-vue-table > tfoot > tr > th:first-child {
    text-align: left;
    padding-left: 25px;
}

.lada-table > tbody > tr > td input {
    width: auto;
    min-width: 80px;
    --background: transparent;
    border: 1px solid transparent;
}

.lada-vue-table > tbody > tr > td input {
    width: auto;
    min-width: 80px;
    --background: transparent;
    border: 1px solid transparent;
}

.lada-table > tbody > tr > td input:focus {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.lada-vue-table > tbody > tr > td input:focus {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
}

/* special case when the lada-table is a property with segments */
.lada-table-property-segment > thead > tr > th:not(:first-child) {
    background-color: #FFFFFF;
}

.lada-table-sticky-thead > thead > tr {
    top: 0;
    position: sticky;
    background-color: #FFFFFF;
}

.lada-table-sticky-tfoot > tfoot > tr {
    bottom: 0;
    position: sticky;
    background-color: #FFFFFF;
}


.lada-table-row-selectable > tbody > tr > td {
    cursor: pointer;
    background: #FFFFFF !important;
    padding: 6px;
}

.lada-table-row-selectable > tbody > tr:hover td {
    background-color: #CCCCCC !important;
}

.lada-table-selected {
    width: 10px;       /* Size of the circle */
    height: 10px;      /* Size of the circle */
    border-radius: 50%; /* Makes the div round */
    background-color: #7DC4B2; /* Color of the circle */
    position: absolute; /* Positions circle absolutely within the cell-container */
    left: 5px;            /* Aligns circle to the left of the cell-container */
    top: 50%;           /* Centers circle vertically */
    transform: translateY(-50%); /* Fine-tune vertical centering */
}

.lada-rent-roll-column-selected {
    background-color: rgba(49, 112, 142, 0.08) !important;
    box-shadow: inset 0 0 0 1px rgba(49, 112, 142, 0.35);
}

.lada-rent-roll-range-selected {
    background-color: rgba(125, 196, 178, 0.18) !important;
    box-shadow: inset 0 0 0 1px rgba(75, 166, 143, 0.45);
}
.lada-table .number-cell {
    text-align: right;
}

.lada-vue-table .number-cell {
    text-align: right;
}

.lada-table td:not(:has(input), :has(select)), .lada-table th:not(:has(input), :has(select)) {
    text-align: left;
    padding: 7px;
}

.lada-vue-table td:not(:has(input), :has(select)), .lada-vue-table th:not(:has(input), :has(select)) {
    text-align: left;
    padding: 7px;
}

.lada-subtotal-data-cell {
    text-align: left;
}

.lada-subtotal-data-cell .lada-subtotal-value {
    display: block;
    width: 100%;
    max-width: 130px;
    padding: 3px 5px;
    margin-left: 0;
    margin-right: auto;
    text-align: right;
    box-sizing: border-box;
    white-space: nowrap;
}

/*{
    line-height: 30px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #7DC4B2;
    border-radius: 50%;
    display: inline-block;
}

*/


/* navbar stuffs */
@media (max-width: 768px) {
    .right-sidebar {
        position: fixed;
        right: -100%; /* Hide sidebar off-screen */
        height: 100%;
        transition: right 0.3s;
        overflow-y: auto;
        padding-bottom: 200px;
    }
    .navbar-toggler {
        display: block; /* Show toggle button on small screens */
    }
}

@media (min-width: 769px) {
    .right-sidebar {
        position: relative;
        right: 0;
        width: auto;
    }
    .navbar-toggler {
        display: none; /* Hide toggle button on large screens */
    }
}

.custom-icon .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333; /* or your preferred color */
    border-radius: 1px;
    transition: all 0.2s;
}

.custom-icon .icon-bar:not(:last-child) {
    margin-bottom: 4px;
}

.lada-overview-col {
}

#lada-nav-output-tab-button, #lada-nav-input-tab-button {
    border: none;
    color: var(--black) !important;
}

#lada-nav-output-tab-button, #lada-nav-output-tab-target {
    background: var(--gray);
}

#lada-nav-output-tab-target .list-group-item {
    background: var(--gray);
    font-size: 16px !important;
}

#lada-nav-input-tab-target, #lada-nav-output-tab-target {
}

#lada-nav-input-tab-target .list-group-item {
    background: var(--light-gray);
    font-size: 16px !important;
    font-weight: 400;
}

#lada-nav-input-tab-button, #lada-nav-input-tab-target {
    background: var(--light-gray);
}

.right-navigation-list-group > .list-group-item:not(:first-child):hover a {
    font-weight: 600 !important;
    text-decoration: none !important;
}


.right-navigation-list-group > .list-group-item:first-child {
    border-bottom: 1px solid var(--black) !important;
    margin-left: 0px;
    margin-right: 5px;
}
.lada-filter-group {
    border-top: 3px solid var(--black) !important;
    padding-top: 5px !important;
}

.lada-filter-group > .list-group-item {
    display: flex;
    align-items: center; /* Vertically centers the checkbox and label */
    gap: 5px; /* Adds a small space between the checkbox and label */
    font-size: 16px !important;
    background-color: var(--background-color);
}

#lada-page-overview .overview-section {
    width: 100%;
    margin-bottom: 32px;
}

#lada-page-overview .overview-metric-col {
    margin-bottom: 24px;
}

#lada-page-overview .overview-section--visual {
    row-gap: 24px;
}

#lada-page-overview .overview-column {
    margin-bottom: 0;
    display: flex;
}

#lada-page-overview .overview-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(145, 163, 159, 0.18);
    box-shadow: 0 24px 48px -32px rgba(26, 46, 64, 0.35);
}

#lada-page-overview .overview-card--map {
    padding-bottom: 18px;
}

#lada-page-overview .overview-card--table {
    gap: 24px;
}

#lada-page-overview .overview-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#lada-page-overview .overview-card__header.table-title {
    padding: 0;
    background: transparent !important;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

#lada-page-overview .overview-card__header.table-title-secondary {
    background: transparent !important;
}

#lada-page-overview .overview-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
}

#lada-page-overview .overview-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#lada-page-overview .overview-map {
    flex: 1;
    min-height: 320px;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(145, 163, 159, 0.18);
}

#lada-page-overview .overview-card__action {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#lada-page-overview .overview-table-container {
    max-height: 500px;
    overflow: auto;
    border-radius: 14px;
    border: 1px solid rgba(145, 163, 159, 0.2);
    background: #FFFFFF;
}

#lada-page-overview .overview-table-container table {
    margin-bottom: 0;
}

#lada-page-overview .overview-table-container tfoot tr {
    position: sticky;
    bottom: 0;
    background: #FFFFFF;
    box-shadow: 0 -4px 12px -8px rgba(26, 46, 64, 0.35);
}

#lada-page-overview .overview-footnote {
    text-align: right;
    font-size: 12px;
    color: var(--dark-gray);
    margin-top: -8px;
    margin-bottom: 8px;
}

@media (max-width: 1199.98px) {
    #lada-page-overview .overview-card {
        padding: 20px;
    }

    #lada-page-overview .overview-map {
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    #lada-page-overview .overview-card__header {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    #lada-page-overview .overview-card__action {
        width: 100%;
        justify-content: flex-start;
    }
}

.lada-filter {
    transform: scale(1.2);
}

input[type="checkbox"]:not(.toggle-checkbox) {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    margin: 0 6px 0 0;
    border: 1px solid #D6DDDB;
    border-radius: 5px;
    background: linear-gradient(145deg, #F7FBFA 0%, #DFE7E4 100%);
    box-shadow: 1px 1px 2px rgba(173, 184, 180, 0.55), -1px -1px 2px rgba(255, 255, 255, 0.92);
    display: inline-grid;
    place-content: center;
    vertical-align: middle;
    cursor: pointer;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

input[type="checkbox"]:not(.toggle-checkbox)::before {
    content: "";
    width: 8px;
    height: 8px;
    transform: scale(0);
    transition: transform 0.16s ease;
    clip-path: polygon(14% 52%, 0 66%, 42% 100%, 100% 23%, 85% 8%, 41% 66%);
    background: #FFFFFF;
}

input[type="checkbox"]:not(.toggle-checkbox):hover {
    border-color: #BEC9C6;
    box-shadow: 1px 1px 2px rgba(164, 176, 172, 0.62), -1px -1px 2px rgba(255, 255, 255, 0.94);
}

input[type="checkbox"]:not(.toggle-checkbox):checked {
    background: linear-gradient(145deg, #DCE4E2 0%, #F1F6F5 100%);
    border-color: #C8D2CF;
    box-shadow: inset 1px 1px 2px rgba(162, 175, 170, 0.7), inset -1px -1px 2px rgba(255, 255, 255, 0.9);
}

input[type="checkbox"]:not(.toggle-checkbox):checked::before {
    transform: scale(1);
    background: #516662;
}

input[type="checkbox"]:not(.toggle-checkbox):focus-visible {
    outline: none;
    border-color: #B5C3C0;
    box-shadow: 0 0 0 2px rgba(91, 120, 113, 0.14), 1px 1px 2px rgba(164, 176, 172, 0.6), -1px -1px 2px rgba(255, 255, 255, 0.92);
}

input[type="checkbox"]:not(.toggle-checkbox):disabled {
    cursor: default;
    border-color: #DCE3E1;
    background: linear-gradient(145deg, #EEF3F1 0%, #E4EBE9 100%);
    box-shadow: inset 1px 1px 2px rgba(176, 188, 184, 0.45), inset -1px -1px 2px rgba(255, 255, 255, 0.7);
    opacity: 1;
}

input[type="checkbox"]:not(.toggle-checkbox):disabled:checked {
    border-color: #CED8D5;
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    margin: 0 6px 0 0;
    border: 1px solid #D6DDDB;
    border-radius: 50%;
    background: linear-gradient(145deg, #F7FBFA 0%, #DFE7E4 100%);
    box-shadow: 1px 1px 2px rgba(173, 184, 180, 0.55), -1px -1px 2px rgba(255, 255, 255, 0.92);
    display: inline-grid;
    place-content: center;
    vertical-align: middle;
    cursor: pointer;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

input[type="radio"]::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.16s ease;
    background: #516662;
}

input[type="radio"]:hover {
    border-color: #BEC9C6;
    box-shadow: 1px 1px 2px rgba(164, 176, 172, 0.62), -1px -1px 2px rgba(255, 255, 255, 0.94);
}

input[type="radio"]:checked {
    background: linear-gradient(145deg, #DCE4E2 0%, #F1F6F5 100%);
    border-color: #C8D2CF;
    box-shadow: inset 1px 1px 2px rgba(162, 175, 170, 0.7), inset -1px -1px 2px rgba(255, 255, 255, 0.9);
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

input[type="radio"]:focus-visible {
    outline: none;
    border-color: #B5C3C0;
    box-shadow: 0 0 0 2px rgba(91, 120, 113, 0.14), 1px 1px 2px rgba(164, 176, 172, 0.6), -1px -1px 2px rgba(255, 255, 255, 0.92);
}

input[type="radio"]:disabled {
    cursor: default;
    border-color: #DCE3E1;
    background: linear-gradient(145deg, #EEF3F1 0%, #E4EBE9 100%);
    box-shadow: inset 1px 1px 2px rgba(176, 188, 184, 0.45), inset -1px -1px 2px rgba(255, 255, 255, 0.7);
    opacity: 1;
}

input[type="radio"]:disabled::before {
    background: #8FA09D;
}

.list-group-item > input[type="checkbox"] {
    margin-right: 1px;
}
.list-group-item > label {
    margin-top: 0px;
    margin-right: 5px;
    margin-bottom: 0px;
}


.list-group-item > ul > li {
    padding-left: 8px !important;
    padding: 3px;
    color: var(--black) !important;
}

.list-group-item > ul > li > a {
    color: var(--black) !important;
}
 

.lada-filter-icon {
    font-size: 20px;
}

.nav-tabs .nav-item {
    flex: 1; /* This makes each tab take equal width */
    text-align: center; /* This centers the tab's text */
}


.lada-table > tbody > tr:nth-child(even) > td.lada-td-altered > input, .table-td-even.lada-td-altered > input {
    background-color: var(--light-blue) !important;
}

.lada-table > tbody > tr:nth-child(odd) > td.lada-td-altered > input, .table-td-odd.lada-td-altered > input {
    background-color: var(--light-blue) !important;
}

.lada-td-altered > .lada-input:not(:disabled) {
    background-color: var(--light-blue) !important;
}

.lada-vue-modified:not(:disabled), .ladaVueModified:not(:disabled) {
    background-color: var(--light-blue) !important;
    border-color: var(--light-blue) !important;
}


.lada-input-error {
    border: 1px solid red;
}


.lada-tooltip {
    position: relative;
    display: inline-block;
    z-index: 100;
}
  
.lada-tooltip .lada-tooltip-content {
    visibility: hidden;
    width: max-content;
    max-width: 180px;
    background-color: black;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 8px;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1000;
    left: 50%;
    bottom: calc(100% + 4px);
    transform: translateX(-50%);
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.3;
}
  
.lada-tooltip:hover .lada-tooltip-content,
.lada-tooltip:focus-within .lada-tooltip-content {
    visibility: visible;
}

.glossary-label-wrapper {
    position: relative;
    display: inline-block;
    cursor: help;
}

.glossary-label {
    display: inline;
}

.glossary-tooltip {
    position: fixed;
    min-width: 160px;
    max-width: 220px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 11px;
    font-weight: normal;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    z-index: 5000;
    text-align: left;
    pointer-events: none;
}

.glossary-tooltip[data-visible="true"] {
    opacity: 1;
    visibility: visible;
}

.glossary-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

.glossary-tooltip[data-placement="bottom"]::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
}

.lada-vue-underwriting-input-table,
.lada-vue-underwriting-output-table {
    overflow: visible;
}

/* Allow glossary tooltips to overflow underwriting table containers */
.table-responsive:has(.lada-vue-underwriting-input-table),
.table-responsive:has(.lada-vue-underwriting-output-table) {
    overflow: visible !important;
}

.table-responsive:has(.lada-vue-underwriting-input-table) tbody,
.table-responsive:has(.lada-vue-underwriting-input-table) thead,
.table-responsive:has(.lada-vue-underwriting-input-table) tr,
.table-responsive:has(.lada-vue-underwriting-input-table) td,
.table-responsive:has(.lada-vue-underwriting-input-table) th,
.table-responsive:has(.lada-vue-underwriting-output-table) tbody,
.table-responsive:has(.lada-vue-underwriting-output-table) thead,
.table-responsive:has(.lada-vue-underwriting-output-table) tr,
.table-responsive:has(.lada-vue-underwriting-output-table) td,
.table-responsive:has(.lada-vue-underwriting-output-table) th {
    overflow: visible;
}

/* Allow tooltips to overflow cash flow summary table and its parent container */
.col-xl-4:has(#lada-underwriting-cash-flow-table) {
    overflow-x: auto;
    overflow-y: visible;
}

#lada-underwriting-cash-flow-table tbody,
#lada-underwriting-cash-flow-table thead,
#lada-underwriting-cash-flow-table tr,
#lada-underwriting-cash-flow-table td,
#lada-underwriting-cash-flow-table th {
    overflow: visible;
}

.lada-nav-right-circle {
    font-size: 24px;
    width: 44px;
    height: 44px;
    padding: 0px;
    color: var(--nav-icon);
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    border-radius: 14px;
    border-left: 3px solid transparent;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.lada-nav-right-circle-text {
    font-size: 12px;
    font-weight: 400;
    display: block;
    text-align: left;
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    padding: 7px 11px;
    border-radius: 10px;
    background: #111111;
    color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: var(--z-nav-popout);
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.22);
    white-space: nowrap;
    transform: translate3d(-8px, -50%, 0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.lada-nav-right-circle-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    background: #111111;
    transform: translateY(-50%) rotate(45deg);
}

.lada-nav-right-circle:hover .lada-nav-right-circle-text {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, -50%, 0);
}

.lada-nav-right-circle:hover, .lada-nav-right-circle.active-item {
    color: var(--dark-green);
    text-decoration: none;
    background: var(--nav-icon-active-background-color);
}

.lada-nav-right-circle.active-item {
    border-left-color: transparent;
}

canvas {
    background-color: #FFFFFF;
    border-radius: 7px;
    margin-bottom: 7px;
}

.page-title {
    height: 70px;
    padding-left: 6px;
    padding-top: 30px;
    padding-bottom: 18px;
    font-size: 20px;
    font-weight: 550;
    text-transform: capitalize;
    color: var(--black);
    border: 1px solid #EDF0F1;
    margin-bottom: 9px;
    margin-left: 0px;
    border-radius: 7px;
}

.page-title .lada-key-indicator-value {
    text-transform: none !important;
}

.custom-select {
    background-color: #dbedeb;
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    display: inline-block;
    width: fit-content;
    border: none;
    padding: 2px;
    line-height: 1.2;
    width: 315px;
    margin-top: 0px;
    border-radius: 14px !important;
}

.lada-title-indicators-container {
    text-align: center;
    left: 580px;
    top: 55px;
    margin-top: -50px;
    position: absolute;
    display: inline-flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 900px;
}


#root > .lada-layout {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    min-height: 100%;
    margin-left: 0;
    margin-right: 0;
}

#root.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

#lada-left-padder > .row,
#app-with-sidebar {
    margin-left: 0;
    margin-right: 0;
}

#app-with-sidebar > main {
    padding-left: 0;
    padding-right: 0;
}

#lada-nav-circles {
    flex: 0 0 60px;
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    min-height: 100%;
    padding: 12px 6px;
    background: #FFFFFF;
    border: 1px solid #EDF0F1;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(32, 58, 69, 0.08);
    z-index: var(--z-nav-popout);
}

#lada-left-padder {
    flex: 1 1 auto;
    min-width: 0;
}

.lada-nav-top,
.lada-nav-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lada-nav-top {
    gap: 6px;
}

.lada-nav-bottom {
    gap: 4px;
}

li.lada-property-category-list-item {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    display: block;
    border-radius: 7px;
    cursor: pointer;
}

li.lada-property-category-list-item.active-item {
    background-color: var(--green);
    font-weight: 600;
}

li.lada-property-category-list-item.selected-item {
    background-color: var(--light-gray);
}

li.lada-property-category-list-item > a {
    color: var(--black);
    text-decoration: none;
}

.lada-property-category-apply {
    background-color: var(--green);
}


#lada-property-category-select {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--black);
    margin-top: -20px;
    position: absolute;
    left: 75px;
    width: 230px;
    max-width: 230px;
    z-index: 80;
}

#lada-property-category-select .lada-property-category-context {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

#lada-property-category-select:hover .lada-property-category-context,
#lada-property-category-select:focus .lada-property-category-context,
#lada-property-category-select:focus-visible .lada-property-category-context {
    text-decoration: underline;
}

.upload-csv, .download-csv {
    display: none;
}

.lada-input:not(:disabled), .lada-vue-input:not(:disabled), .table-custom-input:not(:disabled) {
    background-color: #dbedeb;
    border-radius: 3px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.lada-vue-input.lada-revenue-attribution-select:not(:disabled) {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--black) !important;
    font-family: inherit;
    font-size: 11px !important;
    font-weight: 400;
}

#lada-portfolio-returns-table > tbody > tr > td:has(input:not([readonly]):not(:disabled)),
#lada-portfolio-returns-table > tbody > tr > td:has(select:not(:disabled)),
#lada-portfolio-returns-table > tbody > tr > td:has(.lada-input:not(:disabled)),
#lada-portfolio-returns-actual-initial-equity-table > tbody > tr > td:has(input:not([readonly]):not(:disabled)),
#lada-portfolio-returns-actual-initial-equity-table > tbody > tr > td:has(select:not(:disabled)),
#lada-portfolio-returns-actual-distributions-table > tbody > tr > td:has(input:not([readonly]):not(:disabled)),
#lada-portfolio-returns-actual-distributions-table > tbody > tr > td:has(select:not(:disabled)),
#lada-portfolio-returns-actual-distributions-table > tbody > tr > td:has(.actual-cash-flow-delete-button) {
    background: #D3E3FD;
}

.lada-actual-cash-flow-chart-card {
    min-width: 0;
    overflow: hidden;
}

.lada-actual-cash-flow-sections-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.lada-actual-cash-flow-sections-grid > .valju-table-section {
    min-width: 0;
}

.actual-net-distributions-table-container > #lada-portfolio-returns-actual-distributions-table {
    width: calc(100% - (var(--valju-table-edge-padding-x) * 2));
}

.lada-actual-cash-flow-chart-card__body {
    min-height: 320px;
    padding: 12px 16px 16px;
}

.lada-actual-cash-flow-chart-canvas-wrap {
    position: relative;
    min-height: 292px;
}

.lada-actual-cash-flow-chart-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 292px;
    color: #6b7d8d;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .lada-actual-cash-flow-sections-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


.lada-nav-secondary {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 8px;
    border: 1px solid #EDF0F1;
    box-shadow: 0 10px 24px rgba(32, 58, 69, 0.05);
}

.lada-nav-secondary > ul {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    margin-left: 0px;
    padding-left: 0px;
    margin-bottom: 0px;
}

.lada-nav-secondary > ul > li {
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 13px;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 12px;
    padding-right: 12px;
    font-weight: 400;
    color: var(--black);
    display: block;
    border-radius: 10px;
    color: var(--black);
    margin-left: 0px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.lada-nav-secondary > ul > li:not(:has(label)) {
    
}

.lada-nav-secondary > ul > li > a {
    color: var(--black);
}

.lada-nav-secondary > ul > li > .lada-nav-disabled {
    color: #8c8c8c;
    opacity: 0.5;
    cursor: inherit;
    display: inline-block;
}

.lada-nav-secondary > ul > li > .lada-nav-disabled-tooltip {
    cursor: help;
}

.lada-nav-secondary > ul > li > .lada-nav-disabled-tooltip .lada-nav-disabled {
    opacity: 0.45;
}

.lada-nav-secondary > ul > li > .lada-nav-disabled-tooltip .lada-tooltip-content {
    max-width: 180px;
    padding: 4px 8px;
    font-size: 11px;
    line-height: 1.2;
    border-radius: 6px;
}

.lada-nav-secondary > ul > li > label {
    margin-bottom: 0px;
}

.lada-nav-secondary > ul > li > .lada-filter-truncated-label {
    display: inline-block;
    max-width: calc(100% - 26px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.lada-nav-secondary > ul > li.lada-filter-truncated-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lada-nav-secondary > ul > li:not(:first-child) {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding-left: 14px;
}

.lada-nav-third {
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 6px;
    border: 1px solid #EDF0F1;
    box-shadow: 0 10px 24px rgba(32, 58, 69, 0.05);
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    white-space: nowrap;
}

.lada-nav-third > a {
    min-width: 120px;
    text-align: center;
    position: relative;
    display: inline-block;
    color: var(--black);
    border-radius: 10px;
    padding: 10px 14px;
}

/* when hovering the .lada-nav-third > a, add a small green line underneath */
.lada-nav-third > a:hover {
    text-decoration: none;
}
.lada-nav-third > a:hover:after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px; /* Set your fixed width here */
    height: 3px; /* Set the thickness of the underline */
    background-color: var(--dark-green); /* Set the color of the underline */
}

.lada-nav-third > a.active-item {
    font-weight: 500;
    background: var(--nav-icon-active-background-color);
}

.lada-nav-third > a.active-item:after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px; /* Set your fixed width here */
    height: 3px; /* Set the thickness of the underline */
    background-color: var(--dark-green); /* Set the color of the underline */
}


.logout-link {
    font-size: 25px;
    padding: 0px !important;
}

.lada-nav-third:not(:has(a)) {
    display: none;
}

.scenario-analysis-base-label {
    margin-left: 12px;
}

.scenario-analysis-base-select {
    min-width: 150px;
}

.scenario-analysis-filter-item[hidden] {
    display: none !important;
}

.scenario-analysis-summary {
    background: #FFFFFF;
    border-radius: 7px;
    padding: 18px 18px 20px;
}

.scenario-analysis-title-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.scenario-analysis-title-bar > span {
    grid-column: 2;
}

.scenario-analysis-metric-manager {
    grid-column: 3;
    justify-self: end;
}

.scenario-analysis-metric-button {
    border-radius: 999px !important;
    padding: 6px 14px !important;
    margin-right: 10px;
}

.scenario-analysis-metric-list {
    margin: 0;
}

.scenario-analysis-metric-item {
    cursor: grab;
}

.scenario-analysis-metric-item:first-child {
    padding-top: 2px;
}

.scenario-analysis-metric-item.is-dragging {
    opacity: 0.55;
}

.scenario-analysis-metric-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
}

.scenario-analysis-metric-name {
    color: var(--black);
    font-size: 13px;
}

.scenario-analysis-filter-modal {
    width: min(420px, calc(100vw - 32px));
}

.scenario-analysis-metric-drag {
    color: #98a6a2;
    letter-spacing: -1px;
}

.scenario-analysis-table th,
.scenario-analysis-table td {
    vertical-align: top;
    padding: 8px 10px;
}

.scenario-analysis-table th {
    white-space: nowrap;
}

.scenario-analysis-table td:first-child,
.scenario-analysis-table th:first-child {
    padding-left: 12px;
}

.scenario-analysis-table td:last-child,
.scenario-analysis-table th:last-child {
    padding-right: 12px;
}

.scenario-analysis-value {
    font-weight: 600;
    color: var(--black);
}

.scenario-analysis-delta {
    margin-top: 2px;
    font-size: 12px;
    color: #666666;
}

.scenario-analysis-delta-positive {
    color: #2f8f63;
}

.scenario-analysis-delta-negative {
    color: #c7524a;
}

.scenario-analysis-delta-neutral {
    color: #666666;
}

.scenario-analysis-base-pill {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 6px;
    border-radius: 999px;
    background: #dbedeb;
    font-size: 11px;
    font-weight: 600;
    color: var(--black);
    vertical-align: middle;
}

.scenario-analysis-placeholder {
    min-height: 180px;
    padding: 18px;
}

@media (max-width: 767px) {
    .scenario-analysis-title-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .scenario-analysis-metric-manager {
        width: 100%;
    }

    .scenario-analysis-metric-button {
        width: 100%;
        margin-right: 0;
    }
}

.lada-placeholder-panel {
    background: #FFFFFF;
    border-radius: 7px;
    min-height: 320px;
}


tr > th:first-child {
    border-top-left-radius: 7px;
}
tr > th:last-child {
    border-top-right-radius: 7px;
}

tr > td {
    background: #FFFFFF;
}

tr > th {
    background: #FFFFFF;
}

.col, 
.col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12,
.col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    padding-left: 7px;
    padding-right: 7px;
}

.row {
    margin-left: -7px;
    margin-right: -7px;
}

.left-sidebar {
    background-color: transparent;
    width: 268px;
    padding-left: 10px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lada-nav-section-header {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6F7D86;
    font-weight: 600;
}

.lada-nav-section-header strong {
    font-weight: 600;
}

.lada-nav-section-header::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-right: 1.5px solid #91A39F;
    border-bottom: 1.5px solid #91A39F;
    transform: rotate(45deg);
    transition: transform 0.15s ease;
}

.lada-nav-section > li:first-child .lada-filter-icon {
    margin-left: auto;
    color: #91A39F;
}

.lada-nav-section.is-collapsed > li:not(:first-child) {
    display: none;
}

.lada-nav-section.is-collapsed > .lada-nav-section-header::after {
    transform: rotate(-45deg);
}

.section-container {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    background: #FFFFFF;
}


.btn-green {
    padding: 8px;
    font-size: 10px;
    background-color: #dbedeb;
    cursor: pointer;
    border-radius: 14px;
}

.btn-gray {
    padding: 8px;
    font-size: 10px;
    background-color: var(--gray);
    cursor: pointer;
    border-radius: 14px;
}

.btn.lada-filter-button {
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: rgba(255, 255, 255, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: inherit;
}

@supports (backdrop-filter: blur(1px)) {
    .btn.lada-filter-button {
        backdrop-filter: blur(6px) saturate(140%);
        -webkit-backdrop-filter: blur(6px) saturate(140%);
    }
}

.btn.lada-filter-button:hover,
.btn.lada-filter-button:focus {
    background-color: rgba(255, 255, 255, 0.45);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.62) 100%);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-red {
    padding: 8px;
    font-size: 10px;
    background-color: #ee4747;
    cursor: pointer;
    border-radius: 14px;
}


/* Hide the default checkbox */
.toggle-checkbox {
    display: none;
}

.ladaVueToggleModified {
    border-color: transparent !important;
}

/* Create the toggle switch background */
.toggle-checkbox + label {
    margin-top: 2px !important;
    width: 60px !important;
    height: 24px !important;
    background-color: #ccc !important;
    border-radius: 24px !important;
    display: inline-block !important;
    position: relative !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    margin-bottom: -2px !important;
    border: 2px solid #ccc;
}

/* Create the circular part of the switch */
.toggle-checkbox + label::before {
    content: "" !important;
    width: 24px !important;
    height: 20px !important;
    background-color: #fff;
    border-radius: 50% !important;
    position: absolute !important;
    top: 0px !important;
    left: 2px !important;
    transition: transform 0.3s ease !important;
}

/* When the checkbox is checked, move the switch and change the background */
.toggle-checkbox:checked + label {
    background-color: #dbedeb !important;
    border-color: #dbedeb;
}

.toggle-checkbox:checked + label::before {
    transform: translateX(32px) !important;
}

.ladaTextRight {
    text-align: right;
}

.ladaNumeric {
    text-align: right;
    font-family: ;

}

.scenario-label {
    position: absolute;
    margin-top: -20px;
    font-size: 12px;
    margin-left: 9px;
}

.scenario-select {
    margin-left: 6px;
}

.property-select {
    margin-left: 4px;
}

.scenario-select-vue {
    margin-left: 0 !important;
}

.table-td-sticky {
  position: sticky;
  background-color: #ffffff;
  z-index: 101;
}

th.table-td-sticky {
    z-index: 102;
}

.lada-vue-table-select:not(:disabled) {
    background-color: transparent;
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-weight: 550;
    font-size: 18px;
    color: var(--black);
}


/* Temporary alert styling */
.copy-alert {
    position: absolute;
    margin-top: -22px;
    margin-left: 40px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.copy-alert.show {
    opacity: 1;

}


/* media queries < 1200px */
@media (max-width: 1600px) {
    .lada-key-indicator .lada-key-indicator-name, .lada-key-indicator .lada-vue-key-indicator-name {
        font-size: 14px !important;
    }

    .lada-key-indicator .lada-key-indicator-value, .lada-key-indicator .lada-vue-key-indicator-value {
        font-size: 24px !important;
    }
}

@media (max-width: 1200px) {
    /* hide the 3 last lada-title-indicator children */
    .lada-title-indicators-container > div:nth-child(n+3) {
        display: none;
    }
}

@media (max-width: 968px) {
    /* hide the 3 last lada-title-indicator children */
    .lada-title-indicators-container > div:nth-child(n+1) {
        display: none;
    }
}


/* Additional styles for small screens */
@media (max-width: 768px) {

  /* Default styles for larger screens */
  #lada-nav-circles, .left-sidebar {
      display: none;
  }

  main {
      display: block;
  }

  .lada-nav-third {
      text-align: center;
  }

  .lada-nav-third > a {
      margin-top: 10px;
  }

  .row:has(.lada-overview-col) {
      display: block;
  }

  .navbar-brand > img {
      height: calc(26px * 1.3);
  }

  /* Styles for when the navbar-toggler is clicked (e.g., toggle class on body or specific element) */
  body.nav-open #lada-nav-circles,
  body.nav-open .left-sidebar {
      display: block;
  }

  body.nav-open .left-sidebar {
      width: calc(100%);
  }

  body.nav-open main {
      display: none;
  }

  #lada-nav-circles, .left-sidebar {
    display: none; /* Default state for small screens */
  }

  main {
      display: block;
  }

  .lada-title-indicators-container {
      display: none;
  }
}
/* Additional styles for small screens */
@media (max-width: 768px) {
    .property-select, .scenario-select {
        width: 190px !important;
    }
}


.lada-table-rentroll-vue {
    width: 100%;
    background-color: #FFFFFF;
    overflow: auto;
    height: calc(100vh - 300px);
}

.ladaRentRollTableIsLeftStickyLabelShown {}

.lada-rent-roll-td-sticky {
    position: sticky;
    background-color: #FFFFFF;
    z-index: 101;
    left: 0px;
    width: auto;
    white-space: nowrap;
}

.lada-search-match {
    border: 1px solid var(--black) !important;
}

#lada-rentroll-table td:nth-child(n+3) {
    min-width: 135px;
    max-width: 135px;
}

.lada-tranche-name:hover .lada-tranche-delete {
    visibility: visible !important;
}

.lada-link-black {
    color: var(--black);
}


#lada-tranche-table tr th:first-child, #lada-tranche-table tr td:first-child {
    width: 250px !important;
}

#lada-tranche-table input:disabled {
    opacity: 0;
}

.lada-cash-flow-function-row {
    cursor: pointer;
}

.lada-cash-flow-contract-row td {
    background: #F9F9F9 !important;
    font-style: italic;
}

.lada-cash-flow-contract-row td:first-child {
    padding-left: 35px !important;
}

.LadaCashFlowRowIsBold {
    font-weight: 600 !important;
}

.LadaCashFlowIsSum {
    border-top: 1px solid #cccccc;
}

.LadaCashFlowNoTopBorder {
    border-top: none;
}

#lada-financials-table-vue .lada-financials-subheader td {
    background: #D7E8E9 !important;
}

#lada-financials-table-vue {
    width: max-content;
    min-width: 100%;
}

#lada-financials-table-vue td:first-child {
    min-width: 240px !important;
    max-width: 240px;
    position: sticky;
    background-color: #FFFFFF;
    z-index: 101;
    left: -20px;
    opacity: 0.9;
    width: 240px;
    white-space: nowrap;
}

#lada-financials-table-vue td:nth-child(n+2) {
    min-width: 73px;
}

#lada-cash-flow-table-vue {
    width: max-content;
    min-width: 100%;
    border-radius: 0;
}

#lada-cash-flow-table-vue thead th {
    background: #D7E8E9 !important;
}

#lada-cash-flow-table-vue thead {
    border-radius: 0;
}

#lada-cash-flow-table-vue thead th:first-child,
#lada-cash-flow-table-vue thead th:last-child {
    border-radius: 0;
}

#lada-cash-flow-table-vue th:first-child {
    min-width: 240px !important;
    max-width: 240px;
    position: sticky;
    background-color: #D7E8E9;
    z-index: 102;
    left: -20px;
    width: 240px;
    white-space: nowrap;
}

#lada-cash-flow-table-vue td:first-child {
    min-width: 240px !important;
    max-width: 240px;
    position: sticky;
    background-color: #FFFFFF;
    z-index: 101;
    left: -20px;
    opacity: 0.9;
    width: 240px;
    white-space: nowrap;

}

#lada-cash-flow-table-vue td:nth-child(n+2),
#lada-cash-flow-table-vue th:nth-child(n+2) {
    min-width: 73px;
}

.lada-vue-table-property-segment-assumptions {
    width: auto;
}

.lada-vue-table-property-segment-assumptions th:nth-child(n+1) {
    /*background: var(--dark-green);
    color: #FFFFFF;
    border-radius: 0px;*/
    font-weight: 600;
}

.lada-vue-table-property-segment-assumptions th:nth-child(n+3) {
    /*background: var(--green);
    color: #FFFFFF;
    border-radius: 0px;*/
    font-style: normal;
    font-weight: 600;
}


.lada-vue-table-property-segment-assumptions td:first-child {
    min-width: 240px;
    max-width: 240px;
    width: 240px;
}

.lada-vue-table-property-segment-assumptions td {
    min-width: 135px;
    max-width: 135px;
    width: 135px;
}


.lada-vue-table-responsive {
    width: 100%;
    background-color: #FFFFFF;
}


.lada-key-indicator-input {
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 14px !important;
    width: 100px !important;
    /* set the last character to a 16px */
}


.active-page {
    /*visibility: visible !important;*/
    display: block !important;
    opacity: 1 !important;
    /*position: relative !important; /* Restore normal positioning for the active tab */
}

.lada-page {
    /*position: absolute;*/
    display: none;
    /*top: 0;
    left: 0;*/
    /*visibility: hidden;*/
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* create a spinner */ 
.lada-loader-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.lada-filter-expander {
    font-size: 18px;
    cursor: pointer;
    line-height: 19px;
    float: right;
}

.lada-filter-group-new li {
    font-size: 13px !important;
}

.lada-workspace-picker-group > li {
    cursor: default !important;
}

.lada-workspace-picker {
    position: relative;
    margin-top: 3px;
    margin-bottom: 4px;
}

.lada-workspace-picker__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 3px;
    padding: 6px 10px 6px 5px;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #1f2a33;
    text-align: left;
    outline: none;
    box-shadow: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.lada-workspace-picker__trigger:hover {
    background: #f6fbfa;
}

.lada-workspace-picker__trigger:focus,
.lada-workspace-picker__trigger:focus-visible,
.lada-workspace-picker__trigger--open {
    outline: none;
    box-shadow: none;
    background: #f6fbfa;
}

.lada-workspace-picker__trigger-main {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.lada-workspace-picker__trigger-chevron {
    font-size: 16px;
    color: #6b7280;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(1px);
    transition: opacity 0.15s ease, color 0.15s ease;
}

.lada-workspace-picker__trigger:hover .lada-workspace-picker__trigger-chevron,
.lada-workspace-picker__trigger:focus .lada-workspace-picker__trigger-chevron,
.lada-workspace-picker__trigger:focus-visible .lada-workspace-picker__trigger-chevron,
.lada-workspace-picker__trigger--open .lada-workspace-picker__trigger-chevron {
    opacity: 1;
}

.lada-workspace-picker__menu {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e4ece8;
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(26, 38, 34, 0.12);
    backdrop-filter: blur(14px);
}

.lada-workspace-picker__option {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-size: 12px;
    color: #1f2a33;
    text-align: left;
    outline: none;
    box-shadow: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.lada-workspace-picker__option:hover {
    border-color: #7dc4b2;
    background: #f6fbfa;
    transform: translateY(-1px);
}

.lada-workspace-picker__option:focus,
.lada-workspace-picker__option:focus-visible {
    outline: none;
    box-shadow: none;
    border-color: #7dc4b2;
    background: #f6fbfa;
}

.lada-workspace-picker__option--active {
    border-color: #b9ddd4;
    background: #edf8f4;
    color: #1f2a33;
}

.lada-workspace-picker__icon {
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.lada-workspace-picker__label {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lada-workspace-picker__option-main {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.lada-workspace-picker__check {
    font-size: 16px;
    flex-shrink: 0;
    color: #4ba68f;
}

.lada-workspace-picker__option-trailing {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* all lis except the first should be slighly indented */

.lada-filter-counter {
    font-size: 9px;
    font-weight: 400;
    color: #FFFFFF;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 0px;
    background: var(--black);
    float: right;
    border-radius: 12px;
    margin-left: 3px;
}

.lada-filter-selection-new {
    padding: 0px;
    margin: 0px;
    margin-top: 10px;
    margin-left: 2px;
    list-style-type: none;
    max-height: 0px;
    overflow: auto;
    transition: max-height 0.2s;
}

.lada-filter-selection-new-open {
    max-height: 300px;
    transition: max-height 0.4s;
}



.lada-filter-selection-new li {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 0px !important;
    white-space: nowrap; /* Prevent text from wrapping to a new line */
    overflow: hidden; /* Hide the overflowed text */
}

.lada-filter-option-label {
    display: inline-block;
    width: calc(100% - 26px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    padding-right: 6px;
    padding-top: 1px;
    margin-bottom: 5px;
}

.leaflet-control-attribution {
    display: none !important;
}


.lada-modal-backdrop, .lada-modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal-backdrop);
    visibility: hidden;
  }

  .lada-modal-backdrop,
  .lada-modal-background,
  .modal-backdrop {
    background: var(--glass-backdrop-fallback);
  }

  .modal-backdrop,
  .modal-backdrop.show {
    z-index: var(--z-modal-backdrop);
  }

  .modal-backdrop,
  .modal-backdrop.show {
    opacity: 1;
  }

  .modal,
  .modal.show {
    z-index: var(--z-modal);
  }

  @supports (backdrop-filter: blur(1px)) {
    .lada-modal-backdrop,
    .lada-modal-background,
    .modal-backdrop {
      background: var(--glass-backdrop-tint);
      backdrop-filter: blur(var(--glass-backdrop-blur)) saturate(var(--glass-backdrop-saturation));
      -webkit-backdrop-filter: blur(var(--glass-backdrop-blur)) saturate(var(--glass-backdrop-saturation));
    }
  }

  /* --- MODAL CONTAINER --- */
  .lada-modal {
    --modal-glass-alpha-top: 0.34;
    --modal-glass-alpha-bottom: 0.26;
    --modal-glass-fallback-top: 0.96;
    --modal-glass-fallback-bottom: 0.9;
    background: linear-gradient(180deg, rgba(255, 255, 255, var(--modal-glass-fallback-top)) 0%, rgba(255, 255, 255, var(--modal-glass-fallback-bottom)) 100%);
    width: 670px;
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--glass-radius);
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(255, 255, 255, var(--glass-border-alpha));
    padding: 36px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  @supports (backdrop-filter: blur(1px)) {
    .lada-modal {
      background: linear-gradient(180deg, rgba(255, 255, 255, var(--modal-glass-alpha-top)) 0%, rgba(255, 255, 255, var(--modal-glass-alpha-bottom)) 100%);
      backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
      -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    }
  }

  .modal-content {
    --modal-glass-alpha-top: 0.34;
    --modal-glass-alpha-bottom: 0.26;
    --modal-glass-fallback-top: 0.96;
    --modal-glass-fallback-bottom: 0.9;
    background: linear-gradient(180deg, rgba(255, 255, 255, var(--modal-glass-fallback-top)) 0%, rgba(255, 255, 255, var(--modal-glass-fallback-bottom)) 100%);
    border-radius: var(--glass-radius);
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(255, 255, 255, var(--glass-border-alpha));
  }

  @supports (backdrop-filter: blur(1px)) {
    .modal-content {
      background: linear-gradient(180deg, rgba(255, 255, 255, var(--modal-glass-alpha-top)) 0%, rgba(255, 255, 255, var(--modal-glass-alpha-bottom)) 100%);
      backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
      -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    }
  }

  .modal-content .modal-header {
    background: transparent;
    border: none;
    border-radius: 16px;
  }

  .modal-content .modal-footer {
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
  }

  .modal-content .modal-header .close,
  .modal-content .modal-header .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    opacity: 0.6;
    font-weight: 300;
  }

  .modal-content .modal-header .close:focus,
  .modal-content .modal-header .close:focus-visible,
  .modal-content .modal-header .btn-close:focus,
  .modal-content .modal-header .btn-close:focus-visible {
    outline: none;
    box-shadow: none;
  }

  .modal-content .modal-header .close span {
    font-weight: 300;
  }

  .modal-content .modal-header .close:hover,
  .modal-content .modal-header .btn-close:hover {
    opacity: 0.9;
  }

  .modal-content .modal-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
  }

  .modal-content .modal-body {
    padding-top: 0;
  }

  .modal-content .btn {
    transition: transform 0.15s ease;
    transform-origin: center;
    font-weight: 500;
  }

  .modal-content .btn:hover {
    transform: scale(1.04);
  }

  .modal-content .btn-primary,
  .modal-content .btn-secondary,
  .modal-content .btn-gray {
    padding: 8px 12px;
    font-size: 10px;
    border-radius: 14px;
    border: none;
    color: #1f2a33;
  }

  .modal-content .btn-primary {
    background-color: #dbedeb;
    color: var(--black);
  }

  .modal-content .btn-secondary {
    background-color: var(--gray);
    color: var(--black);
  }

  .modal-content .alert.alert-danger {
    border-radius: 12px;
  }

  .modal-content .btn-red,
  .modal-content .btn-danger,
  .modal-content .lada-property-delete {
    background-color: #f8d7da;
    color: #721c24;
  }

  .modal-content #lada-property-duplicate-name {
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
  }

  .lada-folder-modal {
    --folder-glass-alpha-top: 0.94;
    --folder-glass-alpha-bottom: 0.92;
    --folder-glass-fallback-top: 1;
    --folder-glass-fallback-bottom: 0.98;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, var(--folder-glass-fallback-top)) 0%, rgba(255, 255, 255, var(--folder-glass-fallback-bottom)) 100%);
    border-radius: var(--glass-radius);
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(217, 225, 232, 0.9);
    padding: 20px;
  }

  @supports (backdrop-filter: blur(1px)) {
    .lada-folder-modal {
      background: linear-gradient(180deg, rgba(255, 255, 255, var(--folder-glass-alpha-top)) 0%, rgba(255, 255, 255, var(--folder-glass-alpha-bottom)) 100%);
      backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
      -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    }
  }

  .lada-folder-modal .lada-modal-header,
  .lada-folder-modal .lada-folder-modal-header {
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 6px 4px 12px;
  }

  .lada-folder-close-x {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 18px;
    border-radius: 999px;
    z-index: 5;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .lada-folder-close-x:hover {
    background: rgba(31, 42, 51, 0.06);
    color: #1f2a33;
  }

  .lada-folder-close-x:focus,
  .lada-folder-close-x:focus-visible,
  .lada-folder-close-x:active {
    outline: none;
    box-shadow: none;
    border: none;
  }

  .lada-folder-browser-add {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .lada-folder-browser-add-btn,
  .lada-folder-row-more-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lada-folder-browser-add-btn {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #1f2a33;
    font-size: 18px;
    transition: color 0.15s ease;
  }

  .lada-folder-browser-add-btn:hover {
    color: #1f2a33;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .lada-folder-row-more-btn:hover {
    background: #f5faf8;
    border-color: #b8d8cf;
    color: #1f2a33;
    box-shadow: 0 8px 18px rgba(31, 42, 51, 0.08);
  }

  .lada-folder-browser-add-tooltip .lada-tooltip-content {
    bottom: auto;
    top: calc(100% + 8px);
    left: auto;
    right: 0;
    transform: none;
    background: #1f2a33;
    border-radius: 8px;
    font-size: 11px;
    max-width: 180px;
    padding: 6px 9px;
    text-align: center;
    white-space: normal;
  }

  .lada-folder-browser-add-tooltip .lada-tooltip-content::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 9px;
    left: auto;
    width: 10px;
    height: 10px;
    background: #1f2a33;
    transform: rotate(45deg);
  }

  .lada-folder-browser-add-tooltip:hover .lada-tooltip-content,
  .lada-folder-browser-add-tooltip:focus-within .lada-tooltip-content {
    visibility: visible;
  }

  .lada-folder-browser-add-btn:focus,
  .lada-folder-browser-add-btn:focus-visible,
  .lada-folder-browser-add-btn:active,
  .lada-folder-row-more-btn:focus,
  .lada-folder-row-more-btn:focus-visible,
  .lada-folder-row-more-btn:active {
    outline: none;
    box-shadow: none;
    border: 1px solid #dbe3ea;
    color: #1f2a33;
  }

  .lada-folder-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(220, 227, 232, 0.8);
    color: #1f2a33;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    transition: background 0.15s ease, border-color 0.15s ease;
  }

  .lada-folder-back-btn:hover {
    background: #ffffff;
    border-color: #7dc4b2;
  }

  .lada-folder-back-btn:focus,
  .lada-folder-back-btn:focus-visible,
  .lada-folder-back-btn:active {
    outline: none;
    box-shadow: none;
    border-color: rgba(220, 227, 232, 0.8);
  }

  .lada-workspace-overview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .lada-workspace-overview__card {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
    text-align: left;
  }

  .lada-workspace-overview__card:hover {
    border-color: #7dc4b2;
    background: #f6fbfa;
  }

  .lada-workspace-overview__icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eef6f4;
    color: #4b6f67;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .lada-workspace-overview__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .lada-workspace-overview__label {
    font-size: 13px;
    font-weight: 600;
    color: #1f2a33;
  }

  .lada-workspace-overview__desc {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
  }

  .lada-workspace-overview__count {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
  }

  .lada-workspace-overview__chevron {
    color: #9ca3af;
    font-size: 18px;
    flex-shrink: 0;
  }

  .lada-workspace-overview__options {
    margin-left: 4px;
    margin-bottom: 12px;
    padding: 2px 6px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    line-height: 20px;
    color: #5c6b76;
    flex-shrink: 0;
    visibility: hidden;
  }

  .lada-workspace-overview__card:hover .lada-workspace-overview__options,
  .lada-workspace-overview__options:focus {
    visibility: visible;
  }

  .lada-workspace-overview__options:hover {
    background: transparent;
    color: #1f2a33;
  }

  .lada-workspace-overview__rename-input {
    width: 100%;
    max-width: 240px;
    font-size: 13px;
    font-weight: 600;
  }

  .lada-folder-options-menu-section-label {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 12px 4px;
    margin-top: 4px;
    border-top: 1px solid rgba(220, 227, 232, 0.7);
  }

  .lada-folder-options-menu-item--active {
    background: rgba(125, 196, 178, 0.12);
    color: #1f2a33;
    font-weight: 600;
  }

  .lada-folder-modal .lada-folder-close {
    position: absolute;
    top: 12px;
    right: 12px;
    float: none;
    z-index: 2;
  }

  .lada-folder-search {
    border-radius: 10px;
    outline: none;
    padding-left: 7px;
    padding-right: 7px;
  }

  .lada-folder-search:focus {
    outline: none;
    border: none;
    box-shadow: none;
  }

  .lada-folder-group-label {
    font-size: 12px;
    color: #1f2a33;
    font-weight: 400;
  }

  .lada-folder-header-controls {
    align-items: center;
    display: inline-flex;
    justify-content: center;
  }

  .lada-folder-search-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }

  .lada-search-result-row {
    align-items: center;
    background: #fff;
    border: none;
    border-radius: 12px;
    color: #1f2a33;
    cursor: pointer;
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    text-align: left;
    width: 100%;
  }

  .lada-search-result-row:hover {
    background: #f5fbfa;
  }

  .lada-search-result-row__icon {
    align-items: center;
    color: #5c6b76;
    display: inline-flex;
    font-size: 18px;
    justify-content: center;
    width: 20px;
  }

  .lada-search-result-row__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
  }

  .lada-search-result-row__title {
    color: #1f2a33;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
  }

  .lada-search-result-row__meta {
    color: #6b7280;
    font-size: 11px;
    line-height: 1.35;
    margin-top: 2px;
  }

  .lada-folder-header-controls--with-toggle {
    gap: 10px;
  }

  .lada-folder-group-toggle {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
    position: relative;
  }

  .lada-folder-group-toggle__switch {
    align-items: center;
    display: inline-flex;
  }

  .lada-folder-group-toggle .toggle-checkbox + label {
    margin: 0 !important;
  }

  .lada-folder-group-toggle .toggle-checkbox + label {
    width: 40px !important;
    height: 18px !important;
    border-radius: 18px !important;
  }

  .lada-folder-group-toggle .toggle-checkbox + label::before {
    width: 10px !important;
    height: 10px !important;
    top: 2px !important;
    left: 2px !important;
  }

  .lada-folder-group-toggle .toggle-checkbox:checked + label::before {
    transform: translateX(22px) !important;
  }

  .lada-folder-group-toggle .lada-tooltip-content {
    background: #14212b;
    border-radius: 10px;
    bottom: auto;
    left: 50%;
    max-width: 220px;
    padding: 8px 10px;
    top: calc(100% + 10px);
    transform: translateX(-50%);
  }

  .lada-folder-content {
    background: #ffffff;
    border: 1px solid #dbe3ea;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
  }

  .lada-folder-browser-toolbar {
    align-items: center;
    background: linear-gradient(180deg, #fafcff 0%, #f3f6fa 100%);
    border-bottom: 1px solid #dbe3ea;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px 14px;
  }

  .lada-folder-browser-breadcrumbs {
    align-items: center;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    gap: 6px;
  }

  .lada-folder-browser-breadcrumb {
    display: inline-flex;
    align-items: center;
  }

  .lada-folder-browser-breadcrumb--current {
    color: #1f2a33;
    font-weight: 600;
  }

  .lada-folder-browser-breadcrumb-btn {
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 12px;
    padding: 2px 6px;
  }
  .lada-folder-browser-breadcrumb-btn:hover {
    background: rgba(31, 42, 51, 0.06);
    color: #1f2a33;
  }
  .lada-folder-browser-breadcrumb-btn:focus,
  .lada-folder-browser-breadcrumb-btn:focus-visible,
  .lada-folder-browser-breadcrumb-btn:active {
    background: transparent;
    box-shadow: none;
    color: #1f2a33;
    outline: none;
  }
  .lada-folder-browser-breadcrumb-btn--current {
    color: #1f2a33;
    cursor: default;
    font-weight: 600;
  }
  .lada-folder-browser-breadcrumb-btn--current:hover {
    background: transparent;
  }

  .lada-folder-browser-count {
    background: #ffffff;
    border: 1px solid #dbe3ea;
    border-radius: 999px;
    color: #4b5563;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
  }

  .lada-folder-inline-picker-overlay {
    background: rgba(31, 42, 51, 0.35);
    inset: 0;
    position: fixed;
    z-index: 3600;
  }

  .lada-folder-inline-picker {
    background: #ffffff;
    border: 1px solid #dbe3ea;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(31, 42, 51, 0.28);
    left: 50%;
    max-height: 85vh;
    max-width: 420px;
    overflow-y: auto;
    padding: 16px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    z-index: 3601;
  }

  .lada-folder-inline-picker__header,
  .lada-folder-inline-picker__footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .lada-folder-inline-picker__eyebrow {
    color: #6b7280;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .lada-folder-inline-picker__title {
    color: #1f2a33;
    font-size: 16px;
    font-weight: 600;
    margin-top: 2px;
  }

  .lada-folder-inline-picker__close {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #dbe3ea;
    border-radius: 999px;
    color: #4b5563;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    height: 28px;
    justify-content: center;
    padding: 0;
    width: 28px;
  }

  .lada-folder-inline-picker__section {
    margin-top: 16px;
  }

  .lada-folder-inline-picker__label {
    color: #4b5563;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .lada-folder-inline-picker__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .lada-folder-inline-picker__options--stacked {
    flex-direction: column;
  }

  .lada-folder-inline-picker__option {
    align-items: center;
    background: #ffffff;
    border: 1px solid #dbe3ea;
    border-radius: 10px;
    color: #1f2a33;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    padding: 9px 12px;
  }

  .lada-folder-inline-picker__option:focus,
  .lada-folder-inline-picker__option:focus-visible,
  .lada-folder-inline-picker__option:active {
    outline: none;
    box-shadow: none;
    border-color: #dbe3ea;
  }

  .lada-folder-inline-picker__option--row {
    justify-content: flex-start;
    width: 100%;
  }

  .lada-folder-inline-picker__option--active {
    background: #f3fbf8;
    border-color: #7dc4b2;
    color: #1f2a33;
    font-weight: 600;
  }

  .lada-folder-inline-picker__empty {
    border-radius: 10px;
    color: #6b7280;
    font-size: 12px;
    padding: 12px;
  }

  .lada-folder-inline-picker__footer {
    border-top: 1px solid #e5e7eb;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
  }

  .lada-folder-inline-picker__footer .lada-folder-footer-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
  }

  .lada-folder-modal .lada-modal-footer {
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 10px 12px;
  }

  .lada-folder-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 42, 51, 0.08);
    border-radius: var(--glass-radius);
    z-index: 3400;
  }

  .lada-folder-menu-layer {
    position: absolute;
    inset: 0;
    z-index: 3500;
    pointer-events: none;
  }

  /* --- HEADER (TITLE) --- */
  .lada-modal-header {
    margin-bottom: 16px;
    flex-shrink: 0;
  }
  .lada-modal-header h2 {
    margin: 0;
    font-size: 12px;
    color: #333;
  }

  /* --- FOLDER LIST WRAPPER --- */
  .lada-folder-list {
    margin: 0;
    padding: 8px 8px 10px;
    list-style-type: none;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }

  .lada-folder-divider {
    height: 1px;
    background: rgba(31, 42, 51, 0.12);
    margin: 4px 6px;
    border-radius: 999px;
  }

  /* --- EACH FOLDER GROUP --- */
  .lada-folder-group {
    margin-bottom: 8px;
  }

  .lada-folder-empty-state {
    color: #6b7280;
    font-size: 12px;
    padding: 12px 8px;
  }

  .lada-folder-summary {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #1f2a33;
    font-weight: 600;
    padding-bottom: 3px;
    padding-top: 3px;
    margin-top: 2px;
    gap: 8px;
    position: relative;
  }

.lada-hierarchy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3a4a57;
    width: 18px;
    flex-shrink: 0;
}

.lada-folder-icon,
.lada-sub-portfolio-icon {
    font-size: 16px;
}

.lada-property-icon {
    font-size: 14px;
}

.lada-folder-summary:hover {
    background: #DBEDEB;
    border-radius: 8px;
}

  .lada-folder-title {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
  }

  .lada-folder-star-icon {
    cursor: pointer;
    font-size: 16px;
    margin-left: 6px;
    margin-right: 10px;
  }

  /* Optional arrow icon (you can replace with an actual icon) */
  .lada-folder-arrow {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #2c3a4b;
    margin-right: 8px;
    transition: transform 0.3s;
  }
  /* “Open” arrow could be rotated down if you add JS or details element behavior */
  .lada-folder-summary.open .lada-folder-arrow {
    transform: rotate(180deg);
  }

  .lada-folder-summary:hover .lada-folder-options {
    visibility: visible;
  }

  .lada-folder-options {
      margin-left: auto;
      margin-right: 0;
      margin-bottom: 6px;
      visibility: hidden;
      flex-shrink: 0;
      align-self: center;
  }

  /* --- SUBFOLDERS OR LIST ITEMS --- */
  .lada-subfolder-list {
      max-height: 0px;
      overflow: hidden;
      list-style: none;
      padding: 0;
      color: #2b3944;
      transition: max-height 0.2s;
    }

  .lada-subfolder-list-open {
        transition: max-height 1s;
        max-height: 10000px;
        overflow: visible;
    }

  .lada-subfolder-list.lada-subfolder-list-properties {
      padding-left: 24px;
  }

  .lada-category-drop-target {
      background: #CCCCCC;
  }

  .lada-subfolder-list li {
      padding: 6px 8px 6px 20px; /* indent */
      margin: 0;
      line-height: 1.2;
      cursor: pointer;
  }

  .lada-subfolder-list li.lada-sub-portfolio-row,
  .lada-sub-portfolio-row {
      padding: 0 8px 0 12px;
      margin: 0;
      background: transparent;
      border-radius: 0;
      list-style: none;
      border: none;
      box-shadow: none;
  }

  .lada-sub-portfolio-summary {
      padding-left: 0 !important;
      position: relative;
      padding-top: 6px;
      padding-bottom: 6px;
      line-height: 20px;
      min-height: 32px;
      margin-top: 0;
  }

  .lada-sub-portfolio-summary:hover {
      background: #DBEDEB;
      border-radius: 8px;
  }

  .lada-sub-portfolio-title {
      display: flex;
      align-items: center;
      gap: 6px;
      flex: 1;
      min-width: 0;
  }

  .lada-sub-portfolio-menu {
      margin-left: 6px;
      margin-right: 10px;
      cursor: pointer;
      color: #5c6b76;
      font-size: 20px;
      line-height: 20px;
      padding-bottom: 10px;
      visibility: hidden;
  }

  .lada-sub-portfolio-menu-placeholder {
      visibility: hidden !important;
      pointer-events: none;
  }

  .lada-sub-portfolio-summary:hover .lada-sub-portfolio-menu {
      visibility: visible;
  }

  .lada-sub-portfolio-options-menu {
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1000;
      margin: 0;
      border-radius: 14px;
      pointer-events: auto;
  }

  .lada-sub-portfolio-drop-target {
      border: 1px dashed var(--light-green);
      background: #eef7f1;
  }

  .lada-sub-portfolio-reorder-target {
      border: 1px dashed #c8d0ff;
      background: #f5f7ff;
  }

  .lada-drop-placeholder {
      padding: 6px 12px;
      border: 1px dashed var(--light-green);
      border-radius: 6px;
      background: #f7fff8;
      color: #4a4a4a;
      font-size: 12px;
      margin: 4px 8px;
  }

  .lada-property-row {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 8px 8px 16px;
      background: transparent;
  }

  .lada-subfolder-list .lada-subfolder-list .lada-property-row {
      padding: 6px 0 6px 16px;
  }

  .lada-property-name {
      flex: 1;
  }

  .lada-property-cell {
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
  }

  .lada-property-meta {
      color: #7b8793;
      font-size: 11px;
      line-height: 1.2;
  }

  .lada-property-rename-input {
      max-width: 260px;
  }

  .lada-property-options {
      color: #5c6b76;
      cursor: pointer;
      font-size: 20px;
      line-height: 20px;
      margin-left: 4px;
      padding-bottom: 10px;
      visibility: hidden;
  }

  .lada-property-row:hover .lada-property-options {
      visibility: visible;
  }

  .lada-property-options-menu {
      min-width: 220px;
  }

  .lada-sub-portfolio-row .lada-subfolder-list {
      padding-left: 24px;
      margin-bottom: 0;
  }

  .lada-property-row:hover,
  .lada-property-row:active {
      background: #DBEDEB;
      border-radius: 8px;
  }

  .lada-search-hit-row {
      background: #DBEDEB;
      border-radius: 4px;
  }

  .lada-search-highlight {
      background: #DBEDEB;
      border-radius: 4px;
      padding: 2px 4px;
  }

  .lada-search-hit-row:hover {
      background: #BCDEDA;
  }

  .lada-search-hit-row:hover .lada-search-highlight,
  .lada-search-highlight:hover {
      background: #BCDEDA;
  }

  /* --- FOOTER (BUTTONS) --- */
  .lada-modal-footer {
      display: flex;
      justify-content: space-between;
      margin-top: 16px;
      flex-shrink: 0;
  }

  .lada-metric-filter-panel {
      margin-bottom: 20px;
  }

  .lada-metric-filter-header {
      align-items: center;
      display: flex;
      justify-content: space-between;
      gap: 10px;
  }

  .lada-metric-filter-header-actions {
      align-items: center;
      display: flex;
      gap: 8px;
      padding-right: 28px;
  }

  .lada-metric-filter-toolbar {
      display: flex;
      justify-content: space-between;
      padding: 8px 6px 0;
  }

  .lada-metric-filter-list {
      list-style: none;
      margin: 0;
      max-height: 500px;
      overflow-y: auto;
      overflow-x: hidden;
      padding: 15px 6px 4px;
  }

  .lada-metric-filter-item {
      align-items: center;
      display: flex;
      gap: 10px;
      justify-content: space-between;
      margin-bottom: 6px;
      padding: 2px 4px;
  }

  .lada-metric-filter-item:last-child {
      margin-bottom: 0;
  }

  .lada-metric-filter-item:hover {
      background-color: #DBEDEB;
  }

  .lada-metric-filter-drop-target {
      background-color: transparent;
      border-top: 2px solid #7dc4b2;
  }

  .lada-metric-filter-item-main {
      align-items: center;
      display: flex;
      flex: 1 1 auto;
  }

  .lada-metric-filter-item-main label {
      margin-bottom: 0;
  }

  .lada-metric-filter-modal {
      padding: 16px;
  }

  .lada-metric-filter-modal .lada-modal-header {
      margin-bottom: 0;
  }

  .lada-metric-filter-modal .lada-metric-filter-panel {
      margin: 0 10px 20px;
  }

  .lada-metric-filter-modal .lada-metric-filter-actions {
      gap: 10px;
      padding: 0 10px;
  }

  .lada-metric-filter-modal .lada-metric-filter-actions .btn {
      flex: 0 0 auto;
  }

  .lada-metric-filter-modal .lada-metric-filter-select-all:focus,
  .lada-metric-filter-modal .lada-metric-filter-select-all:focus-visible,
  .lada-metric-filter-modal .lada-metric-filter-select-all:active,
  .lada-metric-filter-modal .lada-modal-header .close:focus,
  .lada-metric-filter-modal .lada-modal-header .close:focus-visible,
  .lada-metric-filter-modal .lada-modal-header .close:active {
      box-shadow: none;
      outline: none;
  }

  .lada-folder-footer-btn {
      transition: transform 0.15s ease;
      transform-origin: center;
  }

  .lada-folder-footer-btn:hover {
      transform: scale(1.04);
  }
  .lada-btn {
      padding: 8px 12px;
      border: none;
      font-size: 14px;
      cursor: pointer;
      border-radius: 4px;
  }
  .lada-add-btn {
      background-color: var(--light-green);
      color: #fff;
  }

  .lada-close {
      float: right;
      cursor: pointer;
      font-size: 14px;
      color: #999;
  }

.lada-folder-expand-icon {
    color: #2c3a4b;
    font-size: 16px;
    margin-right: 0;
    transition: transform 0.3s;
}

.lada-vue-portfolio-select {
    border-radius: 14px !important;
    font-size: 12px;
    
}

.lada-folder-counter, .lada-filter-counter {
    font-size: 9px;
    font-weight: 400;
    color: #1f2a33;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 0px;
    background: rgba(225, 231, 235, 0.9);
    border-radius: 12px;
    margin-left: 3px;
}

.lada-folder-options-menu {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    margin: 0;
    border-radius: 14px;
    pointer-events: auto;
}

.lada-folder-options-menu-item {
    color: var(--black);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 14px;
    cursor: pointer;
}

.lada-folder-options-menu-item:hover {
    background-color: #DBEDEB;
}

.lada-folder-options-menu-delete-confirm {
    padding: 12px;
    max-width: 250px;
    cursor: default;
    text-align: center;
}

.lada-folder-options-menu-delete-info {
    padding: 12px;
    margin-bottom: 20px;
    cursor: default;
}

.lada-folder-delete-dialog-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 42, 51, 0.12);
    border-radius: var(--glass-radius);
    pointer-events: auto;
}

.lada-folder-delete-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(340px, calc(100% - 32px));
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid rgba(217, 225, 232, 0.95);
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(31, 42, 51, 0.18);
    padding: 20px;
    text-align: center;
    pointer-events: auto;
}

.lada-folder-delete-dialog__title {
    color: #1f2a33;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.lada-folder-delete-dialog__body {
    color: #5c6b76;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.lada-folder-delete-dialog__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}


.ladaAnimateRotateArrow180Deg {
    transform: rotate(-180deg);
}

.lada-filter-group-new input[type="checkbox"] {
    margin-right: 2px;
    height: 15px;
    width: 15px;
    cursor: pointer;
    line-height: 14px;
}

.lada-filter-group-new input[type="checkbox"]:disabled {
    cursor: default;
    opacity: 0.6;
}

.lada-filter-group-new input[type="checkbox"]:disabled + label {
    color: #999999;
    cursor: default;
}

.lada-filter-group-new label {
    font-size: 13px;
    cursor: pointer;
    line-height: 20px;
}

.lada-filter-selection-new li {
    display: flex;
    align-items: center;
}

.lada-filter-selection-new li + li {
    margin-top: 4px;
}

.lada-filter-selection-new li > input[type="checkbox"] {
    margin-top: 0;
    margin-bottom: 0;
    align-self: center;
    flex: 0 0 auto;
}

.lada-filter-selection-new li > label,
.lada-filter-selection-new li > .lada-filter-option-label {
    display: inline-flex;
    align-items: center;
    min-height: 15px;
    line-height: 1.15;
    padding-top: 1px;
    margin: 0;
}

.lada-portfolio-insights #lada-modal-rent-roll-columns-modal li {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.lada-portfolio-insights #lada-modal-rent-roll-columns-modal li > input[type="checkbox"] {
    margin-top: 0;
    margin-bottom: 0;
    align-self: center;
    flex: 0 0 auto;
}

.lada-portfolio-insights #lada-modal-rent-roll-columns-modal li > label {
    display: flex;
    align-items: center;
    min-height: 15px;
    margin: 0;
    padding: 0;
    line-height: 1.15;
}

.lada-filter-group-new  {
    margin-top: 0px;
    margin-bottom: 0px;
}


.lada-vue-input-range-value {
    display: inline-block;
    font-size: 11px;
    line-height: 30px;
    color: var(--black);
    position: absolute;
    margin-left: 2px;
    margin-top: 2px;
    width: 36px !important;
    min-width: 36px !important;
    border-radius: 0px;
}

.lada-vue-input[type=range] {
    appearance: none;
    -webkit-appearance: none;
    width: 140px !important;
    border-radius: 14px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* WebKit-based browsers (e.g., Chrome, Safari) */
.lada-vue-input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Remove default styles */
    appearance: none;
    width: 20px; /* Thumb width */
    height: 20px; /* Thumb height */
    background: var(--black); /* Thumb color */
    border-radius: 50%; /* Make thumb circular */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background 0.3s, transform 0.2s;
  }
  
  /* Thumb hover effect */
  .lada-vue-input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2); /* Slightly enlarge the thumb */
  }
  
  /* Firefox */
  .lada-vue-input[type="range"]::-moz-range-thumb {
    width: 20px; /* Thumb width */
    height: 20px; /* Thumb height */
    background: var(--black); /* Thumb color */
    border-radius: 50%; /* Make thumb circular */
    border: 2px solid #fff; /* Optional border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background 0.3s, transform 0.2s;
  }
  
  /* Thumb hover effect for Firefox */
  .lada-vue-input[type="range"]::-moz-range-thumb:hover {
    background: #0056b3; /* Darker blue */
    transform: scale(1.2); /* Slightly enlarge the thumb */
  }

/*style the drag */

.lada-nav-secondary > ul > li:first-child {
    padding-left: 5px;
}

.lada-nav-secondary > ul > li:not(:first-child) {
    padding-left: 12px;
    margin-right: 5px;
}

.lada-filter-selection-new {
    padding-left: 7px;
}

.lada-portfolio-insights #lada-page-rent-roll .lada-filter-selection-new.lada-filter-selection-new-open {
    padding-left: 0px !important;
    padding-inline-start: 0px !important;
    margin-left: 0px !important;
}

.lada-portfolio-insights #lada-page-rent-roll .lada-filter-selection-new {
    padding-left: 0px !important;
    padding-inline-start: 0px !important;
    margin-left: 0px;
}

body.lada-fazile-rent-roll-page .left-sidebar .lada-filter-group-new > li > .lada-filter-selection-new,
body.lada-fazile-rent-roll-page .left-sidebar .lada-filter-group-new > li > .lada-filter-selection-new.lada-filter-selection-new-open {
    padding-left: 0px !important;
    padding-inline-start: 0px !important;
    margin-left: 0px !important;
}

body:has(.lada-portfolio-insights) {
    background: #FFFFFF;
}

body:has(.lada-portfolio-insights) #root,
body:has(.lada-portfolio-insights) #lada-left-padder,
body:has(.lada-portfolio-insights) #app-with-sidebar,
body:has(.lada-portfolio-insights) #app-with-sidebar > main {
    background: var(--background-color);
}

body:has(.lada-portfolio-insights) #root > .row,
body:has(.lada-portfolio-insights) #lada-left-padder > .row,
body:has(.lada-portfolio-insights) #app-with-sidebar {
    margin-left: 0;
    margin-right: 0;
}

body:has(.lada-portfolio-insights) #root.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

body.lada-portfolio-shell #lada-nav-circles,
body.lada-market-data-shell #lada-nav-circles,
body:has(.lada-portfolio-insights) #lada-nav-circles {
    display: flex;
    position: relative;
    isolation: isolate;
    flex-direction: column;
    align-self: flex-start;
    flex: 0 0 60px;
    justify-content: flex-start;
    height: calc(100vh - var(--lada-shell-header-height));
    min-height: calc(100vh - var(--lada-shell-header-height));
    max-height: calc(100vh - var(--lada-shell-header-height));
    padding: 10px 8px;
    overflow: visible;
    background: #FFFFFF;
    border: none;
    border-right: 1px solid #EDF0F1;
    border-radius: 0;
    box-shadow: none;
}

body.lada-portfolio-shell .lada-nav-top,
body.lada-portfolio-shell .lada-nav-bottom,
body.lada-market-data-shell .lada-nav-top,
body.lada-market-data-shell .lada-nav-bottom,
body:has(.lada-portfolio-insights) .lada-nav-top,
body:has(.lada-portfolio-insights) .lada-nav-bottom {
    gap: 2px;
}

body.lada-portfolio-shell .lada-nav-bottom,
body.lada-market-data-shell .lada-nav-bottom,
body:has(.lada-portfolio-insights) .lada-nav-bottom {
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 14px;
}

body.lada-portfolio-shell .lada-nav-right-circle,
body.lada-market-data-shell .lada-nav-right-circle,
body:has(.lada-portfolio-insights) .lada-nav-right-circle {
    position: relative;
    width: 42px;
    height: 42px;
    margin-top: 0;
    border-left-width: 2px;
    border-radius: 10px;
}

body.lada-portfolio-shell .lada-nav-right-circle:hover,
body.lada-portfolio-shell .lada-nav-right-circle:focus-visible,
body.lada-market-data-shell .lada-nav-right-circle:hover,
body.lada-market-data-shell .lada-nav-right-circle:focus-visible,
body:has(.lada-portfolio-insights) .lada-nav-right-circle:hover,
body:has(.lada-portfolio-insights) .lada-nav-right-circle:focus-visible {
    z-index: calc(var(--z-nav-popout) + 1);
}

body.lada-portfolio-shell #lada-left-padder,
body:has(.lada-portfolio-insights) #lada-left-padder {
    min-height: calc(100vh - var(--lada-shell-header-height));
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
}

body.lada-portfolio-shell .page-title,
body.lada-market-data-shell .page-title,
body:has(.lada-portfolio-insights) .page-title {
    display: none;
}

body.lada-portfolio-shell header.navbar,
body.lada-market-data-shell header.navbar,
body:has(.lada-portfolio-insights) header.navbar {
    display: none;
}

body.lada-portfolio-shell .lada-portfolio-shell-header,
body.lada-market-data-shell .lada-portfolio-shell-header,
body:has(.lada-portfolio-insights) .lada-portfolio-shell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 0 15px;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E8EF;
}

body.lada-portfolio-shell .lada-portfolio-shell-header__logo,
body.lada-market-data-shell .lada-portfolio-shell-header__logo,
body:has(.lada-portfolio-insights) .lada-portfolio-shell-header__logo {
    display: block;
    width: auto;
    height: calc(26px * 1.3);
}

body.lada-portfolio-shell .lada-portfolio-shell-header .navbar-brand,
body.lada-market-data-shell .lada-portfolio-shell-header .navbar-brand,
body:has(.lada-portfolio-insights) .lada-portfolio-shell-header .navbar-brand {
    padding-top: 6px;
}

body.lada-portfolio-shell .lada-portfolio-shell-header__nav,
body.lada-market-data-shell .lada-portfolio-shell-header__nav,
body:has(.lada-portfolio-insights) .lada-portfolio-shell-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
}

body.lada-portfolio-shell,
body.lada-market-data-shell,
body:has(.lada-portfolio-insights) {
    --lada-shell-header-height: 56px;
    --lada-shell-nav-height: 61px;
    background: #FFFFFF;
    min-height: 100vh;
    overflow-y: hidden;
}

body.lada-portfolio-shell #root,
body.lada-portfolio-shell #lada-left-padder,
body.lada-market-data-shell #root,
body.lada-market-data-shell #lada-left-padder,
body:has(.lada-portfolio-insights) #root,
body:has(.lada-portfolio-insights) #lada-left-padder {
    background: #FFFFFF;
}

body.lada-portfolio-shell #root > .lada-layout,
body.lada-market-data-shell #root > .lada-layout,
body:has(.lada-portfolio-insights) #root > .lada-layout {
    min-height: calc(100vh - var(--lada-shell-header-height));
    overflow: hidden;
}

body.lada-portfolio-shell #lada-left-padder > .row:not(#app-with-sidebar),
body.lada-market-data-shell #lada-left-padder > .row:not(#app-with-sidebar),
body:has(.lada-portfolio-insights) #lada-left-padder > .row:not(#app-with-sidebar) {
    flex: 0 0 auto;
}

body.lada-portfolio-shell #app-with-sidebar,
body.lada-market-data-shell #app-with-sidebar,
body:has(.lada-portfolio-insights) #app-with-sidebar {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    align-items: stretch;
    min-height: 0;
    overflow: hidden;
}

body.lada-portfolio-shell #app-with-sidebar > main,
body.lada-market-data-shell #app-with-sidebar > main,
body:has(.lada-portfolio-insights) #app-with-sidebar > main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    max-height: calc(100vh - var(--lada-shell-header-height));
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    padding: 0 !important;
    background: #FFFFFF;
}

body.lada-portfolio-shell .left-sidebar,
body.lada-market-data-shell .left-sidebar,
body:has(.lada-portfolio-insights) .left-sidebar {
    width: 246px;
    padding: 0 0 0 7px;
    gap: 0;
    border-right: 1px solid #EDF0F1;
    background: #FFFFFF;
    flex-shrink: 0;
    min-height: 0;
    overflow-y: auto;
}

body.lada-portfolio-shell .lada-sidebar-module,
body.lada-market-data-shell .lada-sidebar-module,
body:has(.lada-portfolio-insights) .lada-sidebar-module {
    min-height: 59px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 18px 12px 2px;
    border-bottom: 1px solid #EDF0F1;
}

body.lada-portfolio-shell .lada-sidebar-module__eyebrow,
body.lada-market-data-shell .lada-sidebar-module__eyebrow,
body:has(.lada-portfolio-insights) .lada-sidebar-module__eyebrow {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6F7D86;
    font-weight: 600;
    margin-top: 14px;
}

body.lada-portfolio-shell .lada-sidebar-module__title,
body.lada-market-data-shell .lada-sidebar-module__title,
body:has(.lada-portfolio-insights) .lada-sidebar-module__title {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--black);
}

body:has(.lada-portfolio-insights) .lada-nav-secondary {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 8px 7px 8px 0;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary + .lada-nav-secondary {
    margin-top: 0;
    border-top: 1px solid #F1F3F4;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li {
    margin-right: 0;
    padding: 7px 12px 7px 18px;
    border-radius: 8px;
    position: relative;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul:not(.lada-filter-group-new) > li:first-child {
    padding: 6px 12px 8px 18px;
    font-size: 11px;
    color: #6F7D86;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li:not(:first-child) {
    padding-left: 18px;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li.active-item {
    background: rgba(125, 196, 178, 0.14) !important;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li.active-item::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 3px;
    border-radius: 999px;
    background: var(--dark-green);
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li.active-item > a {
    color: var(--black);
    font-weight: 500;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li > a {
    color: #3E4A53;
    text-transform: capitalize;
    text-decoration: none;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li:not(.active-item):has(a):hover {
    background: transparent !important;
    border-bottom: none !important;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li:not(.active-item):has(a):hover::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 3px;
    border-radius: 999px;
    background: rgba(75, 166, 143, 0.9);
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li:not(.active-item):has(a):hover > a {
    color: #3E4A53;
    font-weight: 400;
    text-decoration: none;
    border-bottom: none !important;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li > label,
body:has(.lada-portfolio-insights) .lada-nav-secondary > ul > li > .lada-filter-truncated-label {
    text-transform: capitalize;
}

body:has(.lada-portfolio-insights) .lada-nav-secondary > .lada-filter-group-new > li > strong {
    text-transform: capitalize;
    font-weight: 500;
}

body:has(.lada-portfolio-insights) .lada-nav-third {
    height: auto;
    min-height: var(--lada-shell-nav-height);
    background: #FFFFFF;
    border: none;
    border-bottom: 1px solid #EDF0F1;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0 0 0 25px;
    gap: 16px;
    display: grid;
    grid-template-areas: "tabs controls";
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
    align-items: stretch;
    flex: 0 0 auto;
    overflow: visible;
    position: relative;
    z-index: 5;
}

body:has(.lada-portfolio-insights) .lada-nav-third.is-stacked {
    grid-template-areas:
        "tabs"
        "controls";
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    row-gap: 8px;
    padding-top: 8px;
    padding-right: 15px;
    padding-bottom: 8px;
}

body:has(.lada-portfolio-insights) .lada-nav-third__tabs-group {
    grid-area: tabs;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    padding-top: 0;
    row-gap: 4px;
}

body:has(.lada-portfolio-insights) .lada-nav-third__tabs-group > .lada-sidebar-module__eyebrow {
    margin-bottom: 0;
}

body:has(.lada-portfolio-insights) .lada-nav-third__tabs {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 0;
    min-width: 0;
    overflow: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 7;
}

body:has(.lada-portfolio-insights) .lada-nav-third__tabs::-webkit-scrollbar {
    display: none;
}

body:has(.lada-portfolio-insights) .lada-nav-third > a,
body:has(.lada-portfolio-insights) .lada-nav-third__tabs > a {
    display: flex;
    align-items: center;
    min-width: auto;
    padding: 3px 0 4px;
    margin-top: 0;
    margin-right: 24px;
    margin-bottom: 0;
    color: #6F7D86;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
}

body:has(.lada-portfolio-insights) .lada-nav-third > a:hover,
body:has(.lada-portfolio-insights) .lada-nav-third__tabs > a:hover {
    background: transparent;
    color: #6F7D86;
    font-weight: 400;
    text-decoration: none;
    border-bottom-color: rgba(75, 166, 143, 0.9);
}

body:has(.lada-portfolio-insights) .lada-nav-third > a.active-item,
body:has(.lada-portfolio-insights) .lada-nav-third__tabs > a.active-item {
    background: transparent;
    color: var(--black);
}

body:has(.lada-portfolio-insights) .lada-nav-third > a.active-item,
body:has(.lada-portfolio-insights) .lada-nav-third__tabs > a.active-item {
    border-bottom-color: var(--dark-green);
    font-weight: 500;
}

body:has(.lada-portfolio-insights) .lada-nav-third > a.active-item:after,
body:has(.lada-portfolio-insights) .lada-nav-third__tabs > a.active-item:after {
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 2px;
    background: var(--dark-green);
}

body:has(.lada-portfolio-insights) .lada-nav-third > a:hover:after,
body:has(.lada-portfolio-insights) .lada-nav-third__tabs > a:hover:after {
    display: none;
}

body:has(.lada-portfolio-insights) .lada-nav-third > a.active-item:after,
body:has(.lada-portfolio-insights) .lada-nav-third__tabs > a.active-item:after {
    display: none;
}

body:has(.lada-portfolio-insights) .lada-nav-third:has(.lada-nav-third__title) {
    display: flex;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--black);
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__controls {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__control {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 60px;
    justify-content: center;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__control--reporting-date {
    align-items: flex-start;
    gap: 2px;
    text-align: left;
    width: 120px;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__control--api-refresh {
    align-items: flex-start;
    gap: 2px;
    text-align: left;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__control--reporting-date .lada-sidebar-module__eyebrow,
body:has(.lada-portfolio-insights) .lada-page-toolbar__control--reporting-date .lada-vue-input.lada-vue-portfolio-select {
    text-align: left;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__label {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6F7D86;
    font-weight: 600;
}

body:has(.lada-portfolio-insights) .lada-nav-third__title,
body:has(.lada-portfolio-insights) .lada-page-toolbar__value {
    font-size: 12px;
    line-height: 1.3;
    color: var(--black);
    font-weight: 400;
    height: 32px;
    padding-top: 6px;
    padding-bottom: 6px;
    box-sizing: border-box;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__control--toggle {
    align-items: flex-start;
    gap: 2px;
    text-align: left;
}

body:has(.lada-portfolio-insights) .page-title .lada-vue-input.lada-vue-portfolio-select {
    min-width: 180px;
    height: 32px;
    padding: 6px 10px;
    border-radius: 8px !important;
    background: #F7F9FB !important;
}

body:has(.lada-portfolio-insights) .lada-nav-third__controls {
    grid-area: controls;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 20px;
    min-width: max-content;
    width: max-content;
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    align-self: center;
    overflow: visible;
    position: relative;
    z-index: 6;
    flex-wrap: nowrap;
    white-space: nowrap;
}

body:has(.lada-portfolio-insights) .lada-nav-third.is-stacked .lada-nav-third__controls {
    width: 100%;
    min-width: 0;
    margin-right: 0;
}

body.lada-portfolio-shell .lada-nav-third__tabs > a.is-overflow-hidden,
body:has(.lada-portfolio-insights) .lada-nav-third__tabs > a.is-overflow-hidden {
    display: none;
}

body.lada-portfolio-shell .lada-nav-third__overflow,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow {
    display: none;
    position: relative;
    margin-left: auto;
    flex: 0 0 auto;
    z-index: 8;
}

body.lada-portfolio-shell .lada-nav-third__overflow.is-visible,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow.is-visible {
    display: flex;
    top: -5px;
    bottom: 5px;
}

body.lada-portfolio-shell .lada-nav-third__overflow-trigger,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 0 0 8px;
    padding: 0;
    border: 1px solid #D9E0E3;
    border-radius: 8px;
    background: #FFFFFF;
    color: #4B5A64;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

body.lada-portfolio-shell .lada-nav-third__overflow-trigger:hover,
body.lada-portfolio-shell .lada-nav-third__overflow-trigger:focus,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow-trigger:hover,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow-trigger:focus {
    color: #223038;
    text-decoration: none;
    outline: none;
}

body.lada-portfolio-shell .lada-nav-third__overflow-menu,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow-menu {
    position: absolute;
    top: 30px;
    right: 0;
    display: none;
    min-width: 180px;
    padding: 8px 0;
    border: 1px solid #DCE3E1;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 14px 32px rgba(18, 28, 33, 0.12);
    z-index: calc(var(--z-dropdown) + 2);
}

body.lada-portfolio-shell .lada-nav-third__overflow.is-open .lada-nav-third__overflow-menu,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow.is-open .lada-nav-third__overflow-menu {
    display: block;
}

body.lada-portfolio-shell .lada-nav-third__overflow.is-open .lada-nav-third__overflow-trigger,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow.is-open .lada-nav-third__overflow-trigger {
    border-color: transparent;
}

body.lada-portfolio-shell .lada-nav-third__overflow-link,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow-link {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 14px;
    color: #5D6B73;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

body.lada-portfolio-shell .lada-nav-third__overflow-link:hover,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow-link:hover {
    background: #F5F8F8;
    color: #223038;
    text-decoration: none;
}

body.lada-portfolio-shell .lada-nav-third__overflow-link.active-item,
body:has(.lada-portfolio-insights) .lada-nav-third__overflow-link.active-item {
    color: #223038;
    font-weight: 500;
}

body:has(.lada-portfolio-insights) .lada-nav-third .lada-vue-input.lada-vue-portfolio-select {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 32px;
    margin-top: 0;
    padding: 6px 10px;
    border-radius: 8px !important;
    background: #F7F9FB !important;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__control--reporting-date .lada-vue-input.lada-vue-portfolio-select {
    padding-left: 0;
}

body:has(.lada-portfolio-insights) .lada-nav-third .lada-bool-container {
    margin: 0;
    height: 32px;
    padding-top: 6px;
    padding-bottom: 6px;
    float: none;
    box-sizing: border-box;
}

body:has(.lada-portfolio-insights) .lada-nav-third .lada-page-toolbar__control--toggle .toggle-checkbox + label {
    width: 40px !important;
    height: 18px !important;
    border-radius: 18px !important;
}

body:has(.lada-portfolio-insights) .lada-nav-third .lada-page-toolbar__control--toggle .toggle-checkbox + label::before {
    width: 10px !important;
    height: 10px !important;
    top: 2px !important;
    left: 2px !important;
}

body:has(.lada-portfolio-insights) .lada-nav-third .lada-page-toolbar__control--toggle .toggle-checkbox:checked + label::before {
    transform: translateX(22px) !important;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__control--basis {
    align-items: center;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__basis-label.glossary-label-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #d9e0e3;
    border-radius: 999px;
    background: #f7f9fb;
    color: #223038;
    cursor: default;
    white-space: nowrap;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__basis-label .glossary-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__basis-text {
    display: inline-flex;
    align-items: center;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__basis-label .glossary-tooltip {
    max-width: 280px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(34, 48, 56, 0.96);
    box-shadow: 0 14px 30px rgba(18, 28, 33, 0.22);
    font-size: 12px;
    line-height: 1.45;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__basis-label .glossary-tooltip::after {
    border-color: rgba(34, 48, 56, 0.96) transparent transparent transparent;
}

body:has(.lada-portfolio-insights) .lada-page-toolbar__basis-label .glossary-tooltip[data-placement="bottom"]::after {
    border-color: transparent transparent rgba(34, 48, 56, 0.96) transparent;
}

body:has(.lada-portfolio-insights) .lada-nav-third__controls .navbar-nav {
    margin-left: 4px;
    display: flex;
    align-items: center;
}

body:has(.lada-portfolio-insights) .lada-portfolio-shell-header__nav .navbar-nav {
    margin-left: 0;
    display: flex;
    align-items: center;
}

body:has(.lada-portfolio-insights) .lada-nav-third__controls .nav-item.text-nowrap {
    display: flex;
    align-items: center;
}

body:has(.lada-portfolio-insights) .lada-portfolio-shell-header__nav .nav-item.text-nowrap {
    display: flex;
    align-items: center;
}

body:has(.lada-portfolio-insights) .lada-nav-third__controls .user-initials-circle {
    width: 30px;
    height: 30px;
}

body:has(.lada-portfolio-insights) .lada-portfolio-shell-header__nav .user-initials-circle {
    width: 30px;
    height: 30px;
}

body:has(.lada-portfolio-insights) .lada-portfolio-insights > .lada-nav-third + .lada-page,
body:has(.lada-portfolio-insights) .lada-portfolio-insights > .lada-nav-third + .row {
    margin-top: 0;
}

body:has(.lada-portfolio-insights) .lada-portfolio-insights {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

body:has(.lada-portfolio-insights) .lada-portfolio-insights > .lada-page {
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100vh - var(--lada-shell-header-height) - var(--lada-shell-nav-height));
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    background: #F7F9FB;
}

body.lada-market-data-shell .lada-nav-secondary {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 8px 7px 8px 0;
}

body.lada-market-data-shell .lada-nav-secondary + .lada-nav-secondary {
    margin-top: 0 !important;
    border-top: 1px solid #F1F3F4;
}

body.lada-market-data-shell .lada-nav-secondary > ul > li {
    margin-right: 0;
    padding: 7px 12px 7px 18px;
    border-radius: 8px;
    position: relative;
}

body.lada-market-data-shell .lada-nav-secondary > ul > li:first-child {
    padding: 6px 12px 8px 18px;
    font-size: 11px;
    color: #6F7D86;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.lada-market-data-shell .lada-nav-secondary > ul > li:not(:first-child) {
    padding-left: 18px;
}

body.lada-market-data-shell .lada-nav-secondary > ul > li.active-item {
    background: rgba(125, 196, 178, 0.14) !important;
}

body.lada-market-data-shell .lada-nav-secondary > ul > li.active-item::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 3px;
    border-radius: 999px;
    background: var(--dark-green);
}

body.lada-market-data-shell .lada-nav-secondary > ul > li.active-item > a {
    color: var(--black);
    font-weight: 500;
}

body.lada-market-data-shell .lada-nav-secondary > ul > li > a {
    color: #3E4A53;
    text-decoration: none;
}

body.lada-market-data-shell .lada-nav-secondary > ul > li:not(.active-item):has(a):hover {
    background: transparent !important;
    border-bottom: none !important;
}

body.lada-market-data-shell .lada-nav-secondary > ul > li:not(.active-item):has(a):hover::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 3px;
    border-radius: 999px;
    background: rgba(75, 166, 143, 0.9);
}

body.lada-market-data-shell .lada-nav-secondary > ul > li:not(.active-item):has(a):hover > a {
    color: #3E4A53;
    font-weight: 400;
    text-decoration: none;
}

body.lada-market-data-shell .lada-nav-third {
    height: auto;
    min-height: var(--lada-shell-nav-height);
    background: #FFFFFF;
    border: none;
    border-bottom: 1px solid #EDF0F1;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0 15px 0 25px;
    gap: 16px;
    justify-content: space-between;
    align-items: stretch;
    flex: 0 0 auto;
    overflow: hidden;
}

body.lada-market-data-shell .lada-nav-third__tabs-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    padding-top: 0;
    row-gap: 4px;
}

body.lada-market-data-shell .lada-nav-third__tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.lada-market-data-shell .lada-nav-third__tabs::-webkit-scrollbar {
    display: none;
}

body.lada-market-data-shell .lada-nav-third__tabs > a {
    display: flex;
    align-items: center;
    min-width: auto;
    padding: 3px 0 4px;
    margin-right: 24px;
    color: #6F7D86;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
}

body.lada-market-data-shell .lada-nav-third__tabs > a:hover {
    background: transparent;
    color: #6F7D86;
    font-weight: 400;
    text-decoration: none;
    border-bottom-color: rgba(75, 166, 143, 0.9);
}

body.lada-market-data-shell .lada-nav-third__tabs > a.active-item {
    background: transparent;
    color: var(--black);
    border-bottom-color: var(--dark-green);
    font-weight: 500;
}

body.lada-market-data-shell .lada-nav-third__tabs > a:hover:after,
body.lada-market-data-shell .lada-nav-third__tabs > a.active-item:after {
    display: none;
}

body.lada-market-data-shell .lada-nav-third__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 0;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 6;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 0;
}

body.lada-market-data-shell .lada-nav-third__controls .lada-title-indicators-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

body.lada-market-data-shell .lada-nav-third__controls:has(.lada-title-indicator-selector-menu) {
    overflow: visible;
}

body.lada-market-data-shell .lada-nav-third__controls:has(.lada-title-indicator-selector-menu) .lada-title-indicators-container {
    overflow: visible;
}

body.lada-market-data-shell .lada-title-indicators-container {
    position: static;
    left: auto;
    top: auto;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: none;
}

body.lada-market-data-shell .lada-property-shell-indicators {
    gap: 0;
    margin: 4px 0 0;
    height: 52px;
    padding: 0 6px;
    box-sizing: border-box;
    border-radius: 10px;
    background: transparent;
    border: 0;
}

body.lada-market-data-shell .lada-title-indicators-container > .lada-title-indicator,
body.lada-market-data-shell .lada-title-indicators-container > .lada-vue-title-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    max-width: none;
    margin-top: 0;
    flex: 0 0 auto;
    text-align: left;
}

body.lada-market-data-shell .lada-property-shell-indicators > .lada-title-indicator,
body.lada-market-data-shell .lada-property-shell-indicators > .lada-vue-title-indicator {
    position: relative;
    min-width: 112px;
    max-width: none;
    min-height: 0;
    padding: 6px 14px;
    border-radius: 0;
    background: transparent;
    border: 0;
}

body.lada-market-data-shell .lada-property-shell-indicators > .lada-title-indicator + .lada-title-indicator,
body.lada-market-data-shell .lada-property-shell-indicators > .lada-vue-title-indicator + .lada-vue-title-indicator,
body.lada-market-data-shell .lada-property-shell-indicators > .lada-title-indicator + .lada-vue-title-indicator,
body.lada-market-data-shell .lada-property-shell-indicators > .lada-vue-title-indicator + .lada-title-indicator {
    border-left: none;
}

body.lada-market-data-shell .lada-property-shell-indicators > .lada-title-indicator + .lada-title-indicator::before,
body.lada-market-data-shell .lada-property-shell-indicators > .lada-vue-title-indicator + .lada-vue-title-indicator::before,
body.lada-market-data-shell .lada-property-shell-indicators > .lada-title-indicator + .lada-vue-title-indicator::before,
body.lada-market-data-shell .lada-property-shell-indicators > .lada-vue-title-indicator + .lada-title-indicator::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: #E3E7EB;
}

body.lada-market-data-shell .lada-property-shell-indicators .lada-title-indicator .lada-key-indicator-name,
body.lada-market-data-shell .lada-property-shell-indicators .lada-vue-title-indicator .lada-key-indicator-name {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6F7D86;
    font-weight: 600;
}

body.lada-market-data-shell .lada-property-shell-indicators .lada-title-indicator .lada-key-indicator-value,
body.lada-market-data-shell .lada-property-shell-indicators .lada-vue-title-indicator .lada-key-indicator-value {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-top: 5px;
    font-size: 16px;
    line-height: 1;
    color: #0E2340;
    font-weight: 700;
    white-space: nowrap;
}

body.lada-market-data-shell .lada-property-shell-indicators .lada-title-indicator .lada-key-indicator-value-type,
body.lada-market-data-shell .lada-property-shell-indicators .lada-vue-title-indicator .lada-key-indicator-value-type {
    font-size: 12px;
    line-height: 1;
    color: #6F7D86;
    font-weight: 600;
}

body.lada-market-data-shell #app {
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100vh - var(--lada-shell-header-height) - var(--lada-shell-nav-height));
    padding: 24px;
    background: #F7F9FB;
    overflow-x: hidden;
    overflow-y: auto;
}

body.lada-property-shell #lada-nav-circles {
    display: flex;
    flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    height: calc(100vh - var(--lada-shell-header-height));
    min-height: calc(100vh - var(--lada-shell-header-height));
    max-height: calc(100vh - var(--lada-shell-header-height));
    padding: 10px 8px;
    background: #FFFFFF;
    border: none;
    border-right: 1px solid #EDF0F1;
    border-radius: 0;
    box-shadow: none;
    justify-content: flex-start;
    overflow: visible;
}

body.lada-property-shell .lada-nav-top,
body.lada-property-shell .lada-nav-bottom {
    gap: 2px;
}

body.lada-property-shell .lada-nav-bottom {
    margin-top: auto;
    padding-top: 14px;
}

body.lada-property-shell .lada-nav-right-circle {
    width: 42px;
    height: 42px;
    margin-top: 0;
    border-left-width: 2px;
    border-radius: 10px;
}

body.lada-property-shell {
    --lada-shell-header-height: 56px;
    --lada-shell-nav-height: 61px;
    background: #FFFFFF;
    min-height: 100vh;
    overflow-y: hidden;
}

body.lada-property-shell > .navbar {
    display: none;
}

body.lada-property-shell #root,
body.lada-property-shell #lada-left-padder,
body.lada-property-shell #app-with-sidebar,
body.lada-property-shell #app-with-sidebar > main {
    background: #FFFFFF;
}

body.lada-property-shell #root > .lada-layout {
    min-height: calc(100vh - var(--lada-shell-header-height));
    overflow: hidden;
}

body.lada-property-shell #lada-left-padder {
    min-height: calc(100vh - var(--lada-shell-header-height));
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
}

body.lada-property-shell #lada-left-padder > .row:not(#app-with-sidebar) {
    flex: 0 0 auto;
}

body.lada-property-shell .page-title {
    display: none;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    margin-left: 0 !important;
    width: 100% !important;
    padding: 0;
    background: transparent !important;
}

body.lada-property-shell .lada-portfolio-shell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 0 15px;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E8EF;
}

body.lada-property-shell .lada-portfolio-shell-header__logo {
    display: block;
    width: auto;
    height: calc(26px * 1.3);
}

body.lada-property-shell .lada-portfolio-shell-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 16px;
    min-width: 0;
}

body.lada-property-shell .lada-property-shell-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: wrap;
}

body.lada-property-shell .lada-property-shell-controls__primary {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

body.lada-property-shell .property-label,
body.lada-property-shell .scenario-label {
    margin-left: 2px;
}

body.lada-property-shell .lada-title-indicators-container {
    position: static;
    left: auto;
    top: auto;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: none;
}

body.lada-property-shell .lada-property-shell-indicators {
    gap: 0;
    margin: 4px 0 0;
    height: 52px;
    padding: 0 6px;
    box-sizing: border-box;
    border-radius: 10px;
    background: transparent;
    border: 0;
}

body.lada-property-shell .lada-title-indicators-container > .lada-title-indicator,
body.lada-property-shell .lada-title-indicators-container > .lada-vue-title-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    max-width: none;
    margin-top: 0;
    flex: 0 0 auto;
    text-align: left;
}

body.lada-property-shell .lada-property-shell-indicators > .lada-title-indicator,
body.lada-property-shell .lada-property-shell-indicators > .lada-vue-title-indicator {
    position: relative;
    min-width: 112px;
    max-width: none;
    min-height: 0;
    padding: 6px 14px;
    border-radius: 0;
    background: transparent;
    border: 0;
}

body.lada-property-shell .lada-property-shell-indicators > .lada-title-indicator + .lada-title-indicator,
body.lada-property-shell .lada-property-shell-indicators > .lada-vue-title-indicator + .lada-vue-title-indicator,
body.lada-property-shell .lada-property-shell-indicators > .lada-title-indicator + .lada-vue-title-indicator,
body.lada-property-shell .lada-property-shell-indicators > .lada-vue-title-indicator + .lada-title-indicator {
    border-left: none;
}

body.lada-property-shell .lada-property-shell-indicators > .lada-title-indicator + .lada-title-indicator::before,
body.lada-property-shell .lada-property-shell-indicators > .lada-vue-title-indicator + .lada-vue-title-indicator::before,
body.lada-property-shell .lada-property-shell-indicators > .lada-title-indicator + .lada-vue-title-indicator::before,
body.lada-property-shell .lada-property-shell-indicators > .lada-vue-title-indicator + .lada-title-indicator::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: #E3E7EB;
}

body.lada-property-shell .lada-title-indicator .lada-key-indicator-name,
body.lada-property-shell .lada-vue-title-indicator .lada-key-indicator-name {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6F7D86;
    font-weight: 600;
}

body.lada-property-shell .lada-property-shell-indicators .lada-title-indicator .lada-key-indicator-name,
body.lada-property-shell .lada-property-shell-indicators .lada-vue-title-indicator .lada-key-indicator-name {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

body.lada-property-shell .lada-property-shell-indicators .lada-title-indicator-selector .lada-key-indicator-name {
    justify-content: space-between;
}

body.lada-property-shell .lada-property-shell-indicators .lada-title-indicator-selector .lada-key-indicator-name:hover {
    background: transparent;
}

body.lada-property-shell .lada-title-indicator .lada-key-indicator-value,
body.lada-property-shell .lada-vue-title-indicator .lada-key-indicator-value {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.3;
    color: var(--black);
    font-weight: 400;
}

body.lada-property-shell .lada-property-shell-indicators .lada-title-indicator .lada-key-indicator-value,
body.lada-property-shell .lada-property-shell-indicators .lada-vue-title-indicator .lada-key-indicator-value {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-top: 5px;
    font-size: 16px;
    line-height: 1;
    color: #0E2340;
    font-weight: 700;
    white-space: nowrap;
}

body.lada-property-shell .lada-title-indicator .lada-key-indicator-value-type,
body.lada-property-shell .lada-vue-title-indicator .lada-key-indicator-value-type {
    font-size: 12px;
    line-height: 1.3;
    color: var(--black);
    font-weight: 400;
}

body.lada-property-shell .lada-property-shell-indicators .lada-title-indicator .lada-key-indicator-value-type,
body.lada-property-shell .lada-property-shell-indicators .lada-vue-title-indicator .lada-key-indicator-value-type {
    font-size: 12px;
    line-height: 1;
    color: #6F7D86;
    font-weight: 600;
}

body.lada-property-shell .lada-property-shell-indicators .lada-title-indicator-selector-chevron {
    font-size: 11px;
    height: 14px;
    margin-left: 10px;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #7E8790;
}

body.lada-property-shell #app-with-sidebar {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    align-items: stretch;
    min-height: 0;
    overflow: hidden;
}

body.lada-property-shell #app-with-sidebar > main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    max-height: calc(100vh - var(--lada-shell-header-height));
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    padding: 0 !important;
    background: #FFFFFF;
}

body.lada-property-shell .left-sidebar {
    display: flex;
    flex-direction: column;
    width: 246px;
    padding: 0 0 0 7px;
    gap: 0;
    border-right: 1px solid #EDF0F1;
    background: #FFFFFF;
    flex: 0 0 246px;
    min-height: 0;
    height: calc(100vh - var(--lada-shell-header-height));
    max-height: calc(100vh - var(--lada-shell-header-height));
    overflow: hidden;
}

body.lada-property-shell .lada-property-shell-sidebar-controls {
    border-bottom: 1px solid #EDF0F1;
    padding: 10px 18px 14px 2px;
}

body.lada-property-shell .left-sidebar .lada-property-shell-controls__primary {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

body.lada-property-shell .left-sidebar .lada-property-shell-selector-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

body.lada-property-shell .left-sidebar .lada-property-shell-selector-group + .lada-property-shell-selector-group {
    margin-top: 10px;
}

body.lada-property-shell .left-sidebar #lada-property-category-select {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 0;
    font-size: 12px;
    line-height: 1.3;
}

body.lada-property-shell .left-sidebar .property-select,
body.lada-property-shell .left-sidebar .scenario-select,
body.lada-property-shell .left-sidebar .lada-custom-select {
    width: 100%;
    max-width: 100%;
}

body.lada-property-shell .left-sidebar .lada-custom-select {
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

body.lada-property-shell .left-sidebar .lada-custom-select.is-open {
    z-index: calc(var(--z-dropdown) + 2);
}

body.lada-property-shell .left-sidebar .property-label,
body.lada-property-shell .left-sidebar .scenario-label {
    position: static;
    display: block;
    margin-left: 0;
    margin-top: 0;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6F7D86;
    font-weight: 600;
}

body.lada-property-shell .left-sidebar .property-select,
body.lada-property-shell .left-sidebar .scenario-select,
body.lada-property-shell .left-sidebar .scenario-select-vue {
    margin-left: 0;
}

body.lada-property-shell .left-sidebar .lada-custom-select .lada-title-indicator-selector-label {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    background: #FFFFFF;
    border: 1px solid #D6DADF;
    border-radius: 8px;
    transition: border-radius 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

body.lada-property-shell .left-sidebar .lada-custom-select-text {
    min-width: 0;
}

body.lada-property-shell .left-sidebar .lada-custom-select .lada-title-indicator-selector-option {
    font-size: 11px;
    font-weight: 500;
}

body.lada-property-shell .left-sidebar .lada-custom-select .lada-title-indicator-selector-label:hover,
body.lada-property-shell .left-sidebar .lada-custom-select .lada-title-indicator-selector-label:focus {
    background: #FFFFFF;
    border-color: #D6DADF;
}

body.lada-property-shell .left-sidebar .lada-custom-select.is-open .lada-title-indicator-selector-label {
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

body.lada-property-shell .left-sidebar .property-select .lada-title-indicator-selector-menu,
body.lada-property-shell .left-sidebar .scenario-select .lada-title-indicator-selector-menu,
body.lada-property-shell .left-sidebar .scenario-select-vue .lada-title-indicator-selector-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #D6DADF;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform-origin: top center;
    transform: scaleY(0.96);
    transition: max-height 160ms ease, opacity 160ms ease, transform 160ms ease;
}

body.lada-property-shell .left-sidebar .lada-custom-select.is-open .lada-title-indicator-selector-menu {
    transform: scaleY(1);
}

body.lada-property-shell .lada-sidebar-module {
    min-height: 59px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 18px 12px 2px;
    border-bottom: 1px solid #EDF0F1;
    position: relative;
    overflow: hidden;
}

body.lada-property-shell .lada-sidebar-module__eyebrow {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6F7D86;
    font-weight: 600;
    margin-top: 14px;
}

body.lada-property-shell .lada-sidebar-module__title {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--black);
}

body.lada-property-shell .lada-sidebar-module__property-image {
    position: absolute;
    top: 5px;
    left: 158px;
    width: 75px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

body.lada-property-shell .lada-nav-secondary {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 8px 7px 8px 0;
}

body.lada-property-shell .lada-nav-secondary + .lada-nav-secondary {
    margin-top: 0 !important;
    border-top: 1px solid #F1F3F4;
}

body.lada-property-shell .lada-sidebar-scroll-region {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

body.lada-property-shell .lada-nav-secondary > ul > li {
    margin-right: 0;
    padding: 7px 12px 7px 18px;
    border-radius: 8px;
    position: relative;
}

body.lada-property-shell .lada-nav-secondary > ul > li:first-child {
    padding: 6px 12px 8px 18px;
    font-size: 11px;
    color: #6F7D86;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.lada-property-shell .lada-nav-secondary > ul > li:not(:first-child) {
    padding-left: 18px;
}

body.lada-property-shell .lada-nav-secondary > ul > li.active-item {
    background: rgba(125, 196, 178, 0.14) !important;
}

body.lada-property-shell .lada-nav-secondary > ul > li.active-item::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 3px;
    border-radius: 999px;
    background: var(--dark-green);
}

body.lada-property-shell .lada-nav-secondary > ul > li.active-item > a {
    color: var(--black);
    font-weight: 500;
}

body.lada-property-shell .lada-nav-secondary > ul > li > a {
    color: #3E4A53;
    text-decoration: none;
    text-transform: capitalize;
}

body.lada-property-shell .lada-nav-secondary > ul > li:not(.active-item):has(a):hover {
    background: transparent !important;
    border-bottom: none !important;
}

body.lada-property-shell .lada-nav-secondary > ul > li:not(.active-item):has(a):hover::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 3px;
    border-radius: 999px;
    background: rgba(75, 166, 143, 0.9);
}

body.lada-property-shell .lada-nav-secondary > ul > li:not(.active-item):has(a):hover > a {
    color: #3E4A53;
    font-weight: 400;
    text-decoration: none;
}

body.lada-property-shell .lada-nav-third {
    height: var(--lada-shell-nav-height);
    min-height: var(--lada-shell-nav-height);
    background: #FFFFFF;
    border: none;
    border-bottom: 1px solid #EDF0F1;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0 15px 0 25px;
    gap: 16px;
    display: grid;
    grid-template-areas: "tabs controls";
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
    align-items: stretch;
    flex: 0 0 auto;
    overflow: visible;
    position: relative;
    z-index: 5;
}

body.lada-property-shell .lada-nav-third.is-stacked {
    height: auto;
    grid-template-areas:
        "tabs"
        "controls";
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    row-gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
}

body.lada-upload-start-shell .lada-nav-third {
    border-bottom: none;
}

body.lada-upload-start-shell #app,
body.lada-upload-start-shell main > .row,
body.lada-upload-start-shell main > .row:last-child {
    background: #FFFFFF;
}

body.lada-upload-start-shell .step-content {
    background: #FFFFFF;
}

body.lada-upload-azure-shell main > .lada-page,
body.lada-upload-azure-shell .step-content,
body.lada-upload-azure-shell .step-content > .col-md-12,
body.lada-upload-azure-shell .step-content > .col-md-12 > .row {
    background: #FFFFFF;
}

body.lada-upload-azure-shell main > .row:last-child,
body.lada-upload-azure-shell .step-content,
body.lada-upload-azure-shell .step-content > .col-md-12,
body.lada-upload-azure-shell .step-content > .col-md-12 > .row,
body.lada-upload-azure-shell .step-content > .col-md-12 > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

body.lada-upload-azure-shell .step-content {
    margin-left: 0;
    margin-right: 0;
}

body.lada-upload-azure-shell main > .row:last-child {
    padding: 0;
}

body.lada-property-shell .lada-nav-third__tabs-group {
    grid-area: tabs;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
    overflow: visible;
    padding-top: 0;
    row-gap: 4px;
}

body.lada-scenario-analysis-shell .lada-scenario-analysis-nav-spacer {
    grid-area: controls;
    min-width: 0;
}

body.lada-scenario-analysis-shell .lada-scenario-analysis-filters {
    margin-top: 10px;
}

body.lada-scenario-analysis-shell .lada-scenario-analysis-filters > .lada-filter-group {
    border-top: none !important;
    list-style: none;
    margin: 0;
    padding-top: 0 !important;
}

body.lada-scenario-analysis-shell .lada-scenario-analysis-filters > .lada-filter-group > li {
    list-style: none;
}

body.lada-scenario-analysis-shell .lada-scenario-analysis-filters > .lada-filter-group > li::marker {
    content: "";
}

body.lada-property-shell .lada-nav-third__tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-width: 0;
    overflow: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 7;
}

body.lada-property-shell .lada-nav-third__tabs::-webkit-scrollbar {
    display: none;
}

body.lada-property-shell .lada-nav-third__controls {
    grid-area: controls;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
    flex-shrink: 0;
    margin-left: auto;
    min-width: max-content;
    width: max-content;
    max-width: none;
    overflow: visible;
    position: relative;
    z-index: 6;
    flex-wrap: nowrap;
    white-space: nowrap;
}

body.lada-property-shell .lada-nav-third.is-stacked .lada-nav-third__controls {
    width: 100%;
    min-width: 0;
}

body.lada-property-shell .lada-nav-third__controls .lada-property-shell-controls,
body.lada-property-shell .lada-nav-third__controls .lada-title-indicators-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-width: max-content;
    max-width: none;
    overflow: visible;
}

body.lada-property-shell .lada-nav-third__controls:has(.lada-title-indicator-selector-menu) {
    overflow: visible;
}

body.lada-property-shell .lada-nav-third__controls:has(.lada-title-indicator-selector-menu) .lada-property-shell-controls,
body.lada-property-shell .lada-nav-third__controls:has(.lada-title-indicator-selector-menu) .lada-title-indicators-container,
body.lada-property-shell .lada-nav-third__controls:has(.lada-title-indicator-selector-menu) .lada-property-shell-controls__primary {
    overflow: visible;
}

body.lada-property-shell .lada-nav-third__controls .lada-property-shell-controls__primary {
    flex-wrap: nowrap;
    min-width: max-content;
    overflow: visible;
}

body.lada-property-shell .lada-property-shell-indicators .lada-title-indicator-selector-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    top: 25px;
    z-index: calc(var(--z-dropdown) + 6);
}

body.lada-property-shell .lada-property-shell-indicators .lada-title-indicator-selector-option {
    display: block;
    width: 100%;
}

body.lada-property-shell .lada-nav-third__tabs > a {
    display: flex;
    align-items: center;
    min-width: auto;
    padding: 3px 0 4px;
    margin-right: 24px;
    color: #6F7D86;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
}

body.lada-property-shell .lada-nav-third__tabs > a:hover {
    background: transparent;
    color: #6F7D86;
    font-weight: 400;
    text-decoration: none;
    border-bottom-color: rgba(75, 166, 143, 0.9);
}

body.lada-property-shell .lada-nav-third__tabs > a.active-item {
    background: transparent;
    color: var(--black);
    border-bottom-color: var(--dark-green);
    font-weight: 500;
}

body.lada-property-shell .lada-nav-third__tabs > a.is-overflow-hidden {
    display: none;
}

body.lada-property-shell .lada-nav-third__tabs > a:hover:after,
body.lada-property-shell .lada-nav-third__tabs > a.active-item:after {
    display: none;
}

body.lada-property-shell .lada-nav-third__overflow {
    display: none;
    position: relative;
    margin-left: auto;
    flex: 0 0 auto;
    z-index: 8;
}

body.lada-property-shell .lada-nav-third__overflow.is-visible {
    display: flex;
    top: -5px;
    bottom: 5px;
}

body.lada-property-shell .lada-nav-third__overflow-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 0 0 8px;
    padding: 0;
    border: 1px solid #D9E0E3;
    border-radius: 8px;
    background: #FFFFFF;
    color: #4B5A64;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

body.lada-property-shell .lada-nav-third__overflow-trigger:hover,
body.lada-property-shell .lada-nav-third__overflow-trigger:focus {
    color: #223038;
    text-decoration: none;
    outline: none;
}

body.lada-property-shell .lada-nav-third__overflow-menu {
    position: absolute;
    top: 30px;
    right: 0;
    display: none;
    min-width: 180px;
    padding: 8px 0;
    border: 1px solid #DCE3E1;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 14px 32px rgba(18, 28, 33, 0.12);
    z-index: calc(var(--z-dropdown) + 2);
}

body.lada-property-shell .lada-nav-third__overflow.is-open .lada-nav-third__overflow-menu {
    display: block;
}

body.lada-property-shell .lada-nav-third__overflow.is-open .lada-nav-third__overflow-trigger {
    border-color: transparent;
}

body.lada-property-shell .lada-nav-third__overflow-link {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 14px;
    color: #5D6B73;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

body.lada-property-shell .lada-nav-third__overflow-link:hover {
    background: #F5F8F8;
    color: #223038;
    text-decoration: none;
}

body.lada-property-shell .lada-nav-third__overflow-link.active-item {
    color: #223038;
    font-weight: 500;
}

body.lada-property-shell #app,
body.lada-property-shell main > .row:last-child,
body.lada-property-shell main > .lada-page {
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100vh - var(--lada-shell-header-height) - var(--lada-shell-nav-height));
    padding: 24px;
    background: #F7F9FB;
    overflow-x: hidden;
    overflow-y: auto;
}

body.lada-property-shell .lada-mobile-sidebar-backdrop {
    display: none;
}

@media (max-width: 768px) {
    body.lada-property-shell {
        --lada-mobile-nav-rail-width: 60px;
    }

    body.lada-property-shell {
        overflow-y: auto;
    }

    body.lada-property-shell.lada-mobile-sidebar-open {
        overflow-y: hidden;
    }

    body.lada-property-shell #app-with-sidebar {
        position: relative;
        overflow: visible;
    }

    body.lada-property-shell #app-with-sidebar > main {
        max-height: none;
        overflow-y: auto !important;
    }

    body.lada-property-shell .lada-mobile-sidebar-backdrop {
        display: block;
        position: fixed;
        top: var(--lada-shell-header-height);
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(14, 35, 64, 0.16);
        opacity: 0;
        pointer-events: none;
        transition: opacity 160ms ease;
        z-index: 24;
    }

    body.lada-property-shell .left-sidebar {
        display: flex;
        position: fixed;
        top: var(--lada-shell-header-height);
        left: var(--lada-mobile-nav-rail-width);
        bottom: 0;
        width: min(246px, calc(100vw - var(--lada-mobile-nav-rail-width)));
        max-width: calc(100vw - var(--lada-mobile-nav-rail-width));
        height: auto;
        max-height: none;
        transform: translateX(calc(-100% - 12px));
        transition: transform 160ms ease, box-shadow 160ms ease;
        box-shadow: none;
        z-index: 25;
        overflow-x: hidden;
        overflow-y: auto;
    }

    body.lada-property-shell.lada-mobile-sidebar-open .lada-mobile-sidebar-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.lada-property-shell.lada-mobile-sidebar-open .left-sidebar {
        transform: translateX(0);
        box-shadow: 0 18px 40px rgba(14, 35, 64, 0.18);
    }
}

body.lada-upload-azure-shell main > .row.step-content:last-child {
    padding: 0;
}

body.lada-management-shell .left-sidebar select.property-select,
body.lada-management-shell .left-sidebar select.scenario-select-vue {
    width: 100%;
    max-width: 100%;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid #D6DADF;
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    box-sizing: border-box;
}

body.lada-management-shell .lada-nav-third__controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

body.lada-management-shell .lada-page-toolbar__control {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 60px;
}

body.lada-management-shell .lada-page-toolbar__control .lada-sidebar-module__eyebrow {
    margin-top: 14px;
}

body.lada-management-shell .lada-page-toolbar__value.lada-vue-input.lada-vue-portfolio-select {
    min-width: 140px;
    height: 32px;
    padding: 6px 10px;
    border: 1px solid #D6DADF;
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--black);
    font-size: 12px;
    line-height: 1.3;
    box-sizing: border-box;
}

body.lada-management-shell .lada-page-toolbar__value--readonly.lada-vue-input.lada-vue-portfolio-select {
    border: none;
    background: transparent !important;
    box-shadow: none;
    padding-left: 0;
    pointer-events: none;
    cursor: default;
    -webkit-appearance: none;
    appearance: none;
}

body.lada-management-shell .lada-nav-secondary > .lada-filter-group-new {
    margin: 0;
    padding-right: 7px;
}

body.lada-management-shell .lada-nav-secondary > .lada-filter-group-new > li {
    margin-right: 0;
    padding: 7px 12px 7px 18px;
    border-radius: 8px;
    position: relative;
}

body.lada-management-shell .lada-nav-secondary > .lada-filter-group-new > li > strong {
    font-weight: 500;
    text-transform: capitalize;
}

body.lada-management-shell .lada-nav-secondary > .lada-filter-group-new > li > .lada-filter-group.lada-nav-section {
    margin: 10px 0 0;
    border-top: none !important;
    padding: 0 !important;
    padding-top: 0 !important;
    list-style: none;
}

body.lada-management-shell .lada-nav-secondary > .lada-filter-group-new > li > .lada-filter-group.lada-nav-section > li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 !important;
    list-style: none;
}

body.lada-management-shell .lada-nav-secondary > .lada-filter-group-new > li > .lada-filter-group.lada-nav-section > li + li {
    margin-top: 4px;
}

body.lada-management-shell .lada-nav-secondary > .lada-filter-group-new > li > .lada-filter-group.lada-nav-section > li > input[type="checkbox"] {
    margin-top: 0;
    margin-bottom: 0;
    align-self: center;
    flex: 0 0 auto;
}

body.lada-management-shell .lada-nav-secondary > .lada-filter-group-new > li > .lada-filter-group.lada-nav-section > li > label,
body.lada-management-shell .lada-nav-secondary > .lada-filter-group-new > li > .lada-filter-group.lada-nav-section > li > .lada-filter-option-label {
    display: inline-flex;
    align-items: center;
    min-height: 15px;
    margin: 0;
    padding: 0;
    line-height: 1.15;
    text-transform: capitalize;
}

#lada-map {
    border-radius: 7px;
}

#lada-map .leaflet-control-zoom {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.42) 100%);
    box-shadow: 0 10px 28px rgba(18, 22, 35, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
}

#lada-map .leaflet-control-zoom a {
    width: 34px;
    height: 34px;
    line-height: 34px;
    color: #1c2230;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 20px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#lada-map .leaflet-control-zoom a:last-child {
    border-bottom: 0;
}

#lada-map .leaflet-control-zoom a:hover {
    background: rgba(255, 255, 255, 0.32);
    color: #0f1726;
}

#lada-map .leaflet-control-zoom a:focus {
    outline: none;
}

#lada-map .lada-map-pin-icon {
    background: transparent;
    border: 0;
}

#lada-map .lada-map-pin-shell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.68) 0%, rgba(223, 238, 234, 0.42) 100%);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 9px 20px rgba(19, 34, 32, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(9px) saturate(145%);
    backdrop-filter: blur(9px) saturate(145%);
}

#lada-map .lada-map-pin-core {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #62e5c0;
    transform: rotate(45deg);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.62), 0 0 12px rgba(98, 229, 192, 0.98), 0 0 20px rgba(98, 229, 192, 0.88);
}

#lada-map .leaflet-popup.lada-map-popup .leaflet-popup-tip-container {
    display: none;
}

#lada-map .leaflet-popup.lada-map-popup .leaflet-popup-content-wrapper {
    position: relative;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.74) 0%, rgba(219, 233, 230, 0.42) 100%);
    box-shadow: 0 12px 26px rgba(15, 26, 34, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(12px) saturate(145%);
    backdrop-filter: blur(12px) saturate(145%);
}

#lada-map .leaflet-popup.lada-map-popup .leaflet-popup-content-wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    height: 14px;
    border-left: 1.5px solid rgba(255, 255, 255, 0.72);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.34));
}

#lada-map .leaflet-popup.lada-map-popup .leaflet-popup-content {
    margin: 11px 14px;
    color: #1d2a2f;
    font-size: 13px;
    line-height: 1.35;
}

#lada-map .leaflet-popup.lada-map-popup .lada-map-popup-title {
    display: block;
    font-family: "Avenir Next", "SF Pro Display", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 550;
    letter-spacing: 0.01em;
}

#lada-map .leaflet-popup.lada-map-popup .leaflet-popup-close-button {
    display: none;
}

.lada-table-title-with-toggle {
    padding-left: 80px;
}

.lada-table-title-with-toggle .toggle-checkbox + label {
    width: 40px !important;
    height: 18px !important;
    border-radius: 18px !important;
}

.lada-table-title-with-toggle .toggle-checkbox + label::before {
    width: 10px !important;
    height: 10px !important;
    top: 2px !important;
    left: 2px !important;
}

.lada-table-title-with-toggle .toggle-checkbox:checked + label::before {
    transform: translateX(22px) !important;
}

.lada-underwriting-financing-toggle .toggle-checkbox + label {
    margin-right: 10px;
    width: 40px !important;
    height: 18px !important;
    border-radius: 18px !important;
}

.lada-underwriting-financing-toggle .toggle-checkbox + label::before {
    width: 10px !important;
    height: 10px !important;
    top: 2px !important;
    left: 2px !important;
}

.lada-underwriting-financing-toggle .toggle-checkbox:checked + label::before {
    transform: translateX(22px) !important;
}

.lada-spin > .lada-icon-container {
    animation: spin 1s infinite linear;
}

.lada-is-dead-end-row {
    background-color: #CCCCCC !important;
}

.lada-is-include-from-row {
    background-color: #C5E5DD !important;
}

tr.lada-contract-row-non-recurring td {
    background-color: #CCCCCC !important;
}

tr.lada-contract-row-development td {
    background-color: #FFF2D9 !important;
}

#lada-rent-roll-table tbody tr.lada-contract-row-non-recurring td {
    background-color: #CCCCCC !important;
}

#lada-rent-roll-table tbody tr.lada-contract-row-development td {
    background-color: #FFF2D9 !important;
}

.lada-property-image-upload {
    position: absolute;
    font-size: 20px;
    color: #666666;
    background: #FFFFFF;
    padding-left: 3px;
    padding-right: 3px;
    border-radius: 2px;
    opacity: 0.7;
    margin-left: 15px;
    margin-top: 15px;
}

.lada-property-image-upload:hover {
    opacity: 1;
    text-decoration: none;
}

option[value=""] {
    background-color: #EAEDEC !important;    
}

option[value="under_offer"] {
    background-color: #f6e49d !important;
}

option[value="let"], option[value="relet"] {
    background-color: #7dc4b2 !important;
}

.lada-vue-underwriting-input-table {
    width: 100%;
    background-color: #FFFFFF;
    overflow: visible;
}

.lada-vue-underwriting-input-table > tbody > tr > td:first-child {
    text-align: left !important;
}

.lada-vue-underwriting-input-table > tbody > tr > td:last-child {
    text-align: right !important;
}


.lada-vue-underwriting-input-table > tbody > tr > td:last-child {
    padding-right: 10px;
}

.lada-vue-underwriting-input-table tr:last-child td {
    padding-bottom: 9px;
}

.lada-vue-underwriting-output-table > tbody > tr > td:last-child, .lada-vue-underwriting-output-table > thead > tr > th:last-child {
    padding-right: 15px;
}

#lada-underwriting-cash-flow-table {
    white-space: nowrap; /* Prevent text wrapping */
    table-layout: auto;  /* Let it expand naturally */ 
}

#lada-underwriting-cash-flow-table td, #lada-underwriting-cash-flow-table th {
    white-space: nowrap; /* Also prevent wrapping inside cells */
}


.lada-rent-roll-row-current td {
    background-color: rgba(204, 204, 204, 1) !important;
}

.lada-rent-roll-row-recurring td {
    background-color: rgba(197, 229, 221, 1) !important;
}

.lada-rent-roll-row-discount td {
    background-color: rgba(255, 221, 221, 1) !important;
}

.lada-rent-roll-row-vacant td {
    background-color: #FFF3B0 !important; /* soft, warm yellow */
}

.azure-upload-container {
    width: 420px;
    max-width: 90vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.upload-area {
    border: 2px dashed var(--green, #7dc4b2);
    border-radius: 8px;
    width: 100%;
    max-width: 420px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.upload-area:hover,
.upload-area.drag-over {
    background-color: #EFF8F6;
    border-color: var(--light-green, #a6d8cb);
}

.upload-area p {
    margin: 0;
    font-size: 16px;
    color: #444;
}

.azure-loading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--green, #7dc4b2);
    font-weight: 600;
    min-height: 32px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.azure-loading.active {
    visibility: visible;
    opacity: 1;
}

.azure-loading .spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #dfeeea;
    border-top-color: var(--green, #7dc4b2);
    border-radius: 50%;
    animation: azure-spin 0.9s linear infinite;
}

.btn-spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: azure-spin 0.9s linear infinite;
    margin-right: 6px;
    vertical-align: -2px;
}

@keyframes azure-spin {
    to {
        transform: rotate(360deg);
    }
}

.rent-roll-upload-input {
    display: none;
}

.lada-rent-roll-col-narrow {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
}

.lada-rent-roll-col-wide {
    width: 197px;
    min-width: 197px;
    max-width: 197px;
}

#lada-rent-roll-table .lada-vue-table th {
    white-space: normal;
    line-height: 1.4;
    word-break: normal;
    min-width: 75px;
}

#lada-rent-roll-table .lada-current-rent-col-numeric {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
}

#lada-rent-roll-table .lada-current-rent-col-text {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
}

#lada-rent-roll-table .lada-current-rent-col-sticky {
    position: sticky;
    left: 0;
    z-index: 3;
    background-color: inherit;
}

#lada-rent-roll-table .lada-vue-table thead .lada-current-rent-col-sticky {
    z-index: 7;
    background-color: #FFFFFF;
}

#lada-rent-roll-table .lada-vue-table tfoot .lada-current-rent-col-sticky {
    z-index: 6;
}

#lada-rent-roll-table .lada-current-rent-col-segment {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
}

#lada-rent-roll-table .lada-current-rent-header-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    max-height: calc(1.2em * 2);
}

#lada-rent-roll-table .lada-vue-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#lada-rent-roll-table .lada-rent-roll-numeric-cell {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

#lada-rent-roll-table .lada-rent-roll-date-cell {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

#lada-rent-roll-table {
    position: relative;
}

#lada-rent-roll-table .lada-vue-table thead th {
    position: sticky;
    top: 0;
    z-index: 5;
    background-color: #FFFFFF;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
    vertical-align: top;
}

#lada-rent-roll-table .lada-vue-table thead th:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#lada-rent-roll-table .lada-vue-table thead th:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#lada-rent-roll-table .lada-vue-table tfoot td,
#lada-rent-roll-table .lada-vue-table tfoot th {
    position: sticky;
    bottom: 0;
    z-index: 4;
    background-color: #FFFFFF;
    border-top: 1px solid var(--gray);
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.lada-rent-roll-header-cell {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lada-rent-roll-header-title {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

#lada-rent-roll-table .lada-rent-roll-header-title.glossary-label-wrapper {
    cursor: pointer;
}

#lada-rent-roll-table tbody tr:nth-child(odd) td {
    background-color: #EAEDEC;
}

#lada-rent-roll-table tbody tr:nth-child(even) td {
    background-color: #FFFFFF;
}

#lada-rent-roll-table tbody tr {
    outline: 2px solid transparent;
    outline-offset: -2px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
}

#lada-rent-roll-table tbody tr::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 3px;
    border: 2px solid transparent;
    pointer-events: none;
    z-index: 250;
}

#lada-rent-roll-table tbody tr:hover,
#lada-rent-roll-table tbody tr:focus-within {
    outline-color: #01B974;
    z-index: 200;
}

#lada-rent-roll-table tbody tr:hover::after,
#lada-rent-roll-table tbody tr:focus-within::after,
#lada-rent-roll-table tbody tr.is-selected::after,
#lada-rent-roll-table tbody tr.selected::after,
#lada-rent-roll-table tbody tr[aria-selected="true"]::after {
    border-color: #01B974;
}

#lada-rent-roll-table tbody tr:nth-child(odd):not(.lada-rent-roll-row-current):not(.lada-rent-roll-row-recurring):not(.lada-rent-roll-row-discount):not(.lada-rent-roll-row-vacant):hover td {
    background-color: #EAEDEC !important;
}

#lada-rent-roll-table tbody tr:nth-child(even):not(.lada-rent-roll-row-current):not(.lada-rent-roll-row-recurring):not(.lada-rent-roll-row-discount):not(.lada-rent-roll-row-vacant):hover td {
    background-color: #FFFFFF !important;
}

#lada-rent-roll-table tbody tr.lada-rent-roll-row-current:hover td {
    background-color: rgba(204, 204, 204, 1) !important;
}

#lada-rent-roll-table tbody tr.lada-rent-roll-row-recurring:hover td {
    background-color: rgba(197, 229, 221, 1) !important;
}

#lada-rent-roll-table tbody tr.lada-rent-roll-row-discount:hover td {
    background-color: rgba(255, 221, 221, 1) !important;
}

#lada-rent-roll-table tbody tr.lada-rent-roll-row-vacant:hover td {
    background-color: #FFF3B0 !important;
}

.lada-no-wrap {
  border-collapse: collapse;
  width: max-content;          /* krymp/expandera till innehållets bredd */ 
  min-width: 100%;   
}

.lada-no-wrap td {
    white-space: nowrap; /* Prevent text wrapping */
    max-width: 25ch;       /* roughly 30 characters */
    white-space: nowrap;   /* prevent line breaks */
    overflow: hidden;      /* hide extra text */
    text-overflow: ellipsis; /* add "..." if it overflows */
}

#lada-rent-roll-table td:not(.lada-rent-roll-td-sticky),
#lada-rent-roll-table th:not(.lada-rent-roll-td-sticky) {
  padding-left: 25px;
}

#lada-rent-roll-table td.lada-rent-roll-td-sticky + td:not(.lada-rent-roll-td-sticky),
#lada-rent-roll-table th.lada-rent-roll-td-sticky + th:not(.lada-rent-roll-td-sticky) {
  padding-left: 25px; /* only the first non-sticky after the sticky */
}

#lada-rent-roll-table td:not(.lada-rent-roll-td-sticky) ~ td:not(.lada-rent-roll-td-sticky),
#lada-rent-roll-table th:not(.lada-rent-roll-td-sticky) ~ th:not(.lada-rent-roll-td-sticky) {
  padding-left: 0; /* reset later non-stickies */
}

#lada-rent-roll-table .lada-rent-roll-property-column {
  max-width: 260px;
}

#lada-rent-roll-table td.lada-rent-roll-property-column {
  white-space: nowrap;
}

#lada-rent-roll-table td.lada-rent-roll-property-column .lada-rent-roll-property-text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
}

#lada-rent-roll-table .lada-rent-roll-text-cell:not(.lada-rent-roll-property-column) {
  min-width: 180px;
  max-width: 260px;
}

#lada-rent-roll-table .lada-rent-roll-text-cell:not(.lada-rent-roll-property-column) .lada-rent-roll-text-wrapper {
  display: inline-flex;
  max-width: 100%;
  width: 100%;
}

#lada-rent-roll-table .lada-rent-roll-text {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#lada-rent-roll-table .lada-rent-roll-compact-column {
  width: 110px;
  min-width: 110px;
  max-width: 110px;
}

#lada-rent-roll-table .lada-rent-roll-compact-column .lada-rent-roll-header-cell {
  align-items: flex-end;
}

#lada-rent-roll-table .lada-rent-roll-compact-column.lada-rent-roll-text-cell:not(.lada-rent-roll-property-column) {
  min-width: 110px;
  max-width: 110px;
}

#lada-rent-roll-table .lada-rent-roll-compact-column .lada-rent-roll-text-wrapper {
  justify-content: flex-end;
}

#lada-rent-roll-table .lada-rent-roll-compact-column .lada-rent-roll-text {
  text-align: right;
  width: 100%;
}

.lada-rent-roll-subtotal {
    border-top: 1px solid #cccccc;
    font-weight: 800 !important;
}

.lada-vue-table > tbody > tr >td.lada-rent-roll-subtotal-per-property {
    border-top: 1px solid #2c363f;
    border-bottom: 1px solid #2c363f;
    --background-color: #2c363f;
    --color: #FFFFFF;
}

.lada-vue-table > tbody > tr > td.lada-rent-roll-subtotal-per-property:hover {
    color: var(--black) !important;
}

.lada-refresh-message {
    position: absolute;
    z-index: 1000;
    background-color: #FFFFFF;
    padding: 5px;
    color: #FF0000;
    width: 200px;
}

 .lada-lease-calculator-result-row {
    border-top: 1px solid var(--gray);
    font-weight: bold;
 }


.lada-select-turnover-contract {
    max-width: 25ch;       /* roughly 25 characters */
    white-space: nowrap;   /* prevent line breaks */
    overflow: hidden;      /* hide extra text */
    text-overflow: ellipsis; /* add "..." if it overflows */
}
.valju-ai-assistant {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    z-index: calc(var(--z-modal) - 60);
    pointer-events: none;
    overflow: visible;
    --valju-ai-trigger-width: 92px;
    --valju-ai-trigger-height: 108px;
    --valju-ai-expanded-width: min(520px, calc(100vw - 24px));
    --valju-ai-expanded-height: min(530px, calc(100vh - 24px));
    --valju-ai-content-safe-inline: clamp(22px, 8%, 34px);
    --valju-ai-content-column-width: min(320px, calc(100% - (var(--valju-ai-content-safe-inline) * 2)));
    --valju-ai-morph-duration: 0.74s;
    --valju-ai-morph-easing: cubic-bezier(0.2, 0.9, 0.22, 1);
}

.valju-ai-assistant * {
    box-sizing: border-box;
}

.valju-ai-trigger,
.valju-ai-panel {
    pointer-events: auto;
}

.valju-ai-trigger {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70.4px;
    height: 70.4px;
    min-width: 70.4px;
    cursor: grab;
    border: none;
    border-radius: 28px;
    padding: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transition:
        width var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        height var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        transform 0.4s ease,
        opacity 0.22s ease,
        left var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        right var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        top var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        bottom var(--valju-ai-morph-duration) var(--valju-ai-morph-easing);
    transform-origin: 50% 50%;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.valju-ai-trigger-toggle {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    border-radius: inherit;
    padding: 0;
    background: transparent;
    cursor: grab;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.valju-ai-trigger-toggle:focus,
.valju-ai-trigger-toggle:focus-visible,
.valju-ai-trigger-toggle:active {
    outline: none;
    box-shadow: none;
}

.valju-ai-trigger-shell {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.16s ease, visibility 0.16s ease;
}

.valju-ai-trigger-blob {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.14) 100%);
    box-shadow:
        0 18px 38px rgba(15, 26, 24, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        inset 0 -24px 40px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px) saturate(1.8);
    -webkit-backdrop-filter: blur(16px) saturate(1.8);
    animation: valju-ai-blob-float 9s ease-in-out infinite;
    transition:
        border-radius var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        background var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        box-shadow var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        border-color var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        backdrop-filter var(--valju-ai-morph-duration) var(--valju-ai-morph-easing),
        -webkit-backdrop-filter var(--valju-ai-morph-duration) var(--valju-ai-morph-easing);
}

.valju-ai-trigger-noise,
.valju-ai-trigger-highlight,
.valju-ai-trigger-logo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.valju-ai-trigger-logo-spin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
    transform-style: preserve-3d;
    backface-visibility: visible;
    will-change: transform;
    animation: valju-ai-logo-attention-spin 12s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.valju-ai-trigger-noise {
    opacity: 0.18;
    background:
        radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.54) 0%, transparent 34%),
        radial-gradient(circle at 78% 74%, rgba(255, 255, 255, 0.18) 0%, transparent 28%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 100%);
    mix-blend-mode: screen;
}

.valju-ai-trigger-highlight::before {
    content: none;
}

.valju-ai-trigger-highlight::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: inherit;
    background: radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.42) 0%, transparent 32%);
}

.valju-ai-trigger-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 560px;
    transform-style: preserve-3d;
    animation: valju-ai-logo-counter-float 9s ease-in-out infinite;
    transition: opacity 0.18s ease;
}

.valju-ai-trigger-glyph {
    width: 23.04px;
    height: 34.8px;
    fill: #69a08a;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.28));
}

.valju-ai-trigger:hover {
    transform: scale(1.05);
}

.valju-ai-trigger:focus,
.valju-ai-trigger:focus-visible {
    outline: none;
}

.valju-ai-panel {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: var(--valju-ai-expanded-width);
    height: var(--valju-ai-expanded-height);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.14) 100%);
    backdrop-filter: blur(16px) saturate(1.8);
    -webkit-backdrop-filter: blur(16px) saturate(1.8);
    box-shadow:
        0 22px 48px rgba(15, 26, 24, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.72) inset;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.08);
    transition: opacity 0.2s ease, transform 0.32s cubic-bezier(0.34, 1.22, 0.64, 1);
}

.valju-ai-assistant.is-open .valju-ai-panel {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.valju-ai-assistant.is-open .valju-ai-trigger-toggle,
.valju-ai-assistant.is-open .valju-ai-trigger-shell {
    opacity: 0;
    pointer-events: none;
}

.valju-ai-assistant[data-panel-x="left"] .valju-ai-panel {
    right: 0;
    left: auto;
}

.valju-ai-assistant[data-panel-x="right"] .valju-ai-panel {
    left: 0;
    right: auto;
}

.valju-ai-assistant[data-panel-y="up"] .valju-ai-panel {
    bottom: 0;
    top: auto;
}

.valju-ai-assistant[data-panel-y="down"] .valju-ai-panel {
    top: 0;
    bottom: auto;
}

.valju-ai-assistant[data-panel-x="left"][data-panel-y="up"] .valju-ai-panel {
    transform-origin: right bottom;
}

.valju-ai-assistant[data-panel-x="right"][data-panel-y="up"] .valju-ai-panel {
    transform-origin: left bottom;
}

.valju-ai-assistant[data-panel-x="left"][data-panel-y="down"] .valju-ai-panel {
    transform-origin: right top;
}

.valju-ai-assistant[data-panel-x="right"][data-panel-y="down"] .valju-ai-panel {
    transform-origin: left top;
}

.valju-ai-assistant.is-dragging .valju-ai-trigger,
.valju-ai-assistant.is-dragging .valju-ai-panel,
.valju-ai-assistant.is-panel-dragging .valju-ai-panel,
.valju-ai-assistant.is-panel-dragging-from-iframe .valju-ai-panel {
    cursor: grabbing;
}

.valju-ai-assistant.is-panel-dragging .valju-ai-frame {
    pointer-events: none;
}

.valju-ai-panel {
    cursor: grab;
}

.valju-ai-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: background 0.15s ease, color 0.15s ease;
}

.valju-ai-close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.55);
}

.valju-ai-close:focus,
.valju-ai-close:focus-visible {
    outline: none;
}

.valju-ai-assistant-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    color: #5d7f70;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.valju-ai-state-card h4 {
    margin: 8px 0 4px;
    color: #3a5f48;
    font-size: 20px;
    font-weight: 600;
}

.valju-ai-state-card p,
.valju-ai-intro-card p {
    margin: 0;
    max-width: 100%;
    color: rgba(58, 95, 72, 0.76);
    font-size: 13px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.valju-ai-body {
    min-height: 0;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 26px 16px 16px;
    overflow-x: hidden;
    background: transparent;
}

.valju-ai-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
    transition: max-height 0.32s ease;
}

.valju-ai-assistant:not([data-mode="idle"]) .valju-ai-messages {
    max-height: 650px;
    overflow-y: auto;
}

.valju-ai-messages > .valju-ai-message-row,
.valju-ai-messages > .valju-ai-notice {
    width: min(100%, var(--valju-ai-content-column-width));
    margin-left: auto;
    margin-right: auto;
}

.valju-ai-messages::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.valju-ai-panel ::selection,
.valju-ai-trigger ::selection {
    background: rgba(121, 164, 145, 0.24);
    color: #234034;
}

.valju-ai-message-row {
    display: flex;
    margin-top: 10px;
}

.valju-ai-message-row-user {
    flex-direction: column;
    align-items: flex-end;
}

.valju-ai-user-request {
    min-width: 0;
    max-width: 280px;
    width: auto;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px 22px 10px 22px;
    background: rgba(18, 31, 27, 0.18);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
}

.valju-ai-user-request p {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.valju-ai-intro-card,
.valju-ai-state-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px 24px 24px 10px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.valju-ai-chip-list {
    display: grid;
    gap: 10px;
    width: 100%;
}

.valju-ai-chip {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.16);
    color: #365748;
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.valju-ai-chip:hover {
    border-color: rgba(121, 164, 145, 0.42);
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.valju-ai-state-card-loading,
.valju-ai-state-card-success,
.valju-ai-state-card-error {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.valju-ai-loader,
.valju-ai-state-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.26);
    color: #4c7663;
    flex: 0 0 auto;
}

.valju-ai-loader::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid rgba(76, 118, 99, 0.2);
    border-top-color: #4c7663;
    border-radius: 999px;
    animation: valju-ai-spin 0.9s linear infinite;
}

.valju-ai-state-card-preview h4 {
    font-size: 18px;
}

.valju-ai-metadata {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 0;
}

.valju-ai-metadata div {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
}

.valju-ai-metadata dt {
    margin-bottom: 6px;
    color: rgba(93, 127, 112, 0.84);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.valju-ai-metadata dd {
    margin: 0;
    color: #2b4a3b;
    font-size: 13px;
    font-weight: 500;
}

.valju-ai-preview-details {
    margin: 14px 0 0;
    padding-left: 18px;
    color: rgba(43, 74, 59, 0.88);
    font-size: 13px;
    line-height: 1.5;
}

.valju-ai-preview-details li + li {
    margin-top: 8px;
}

.valju-ai-choice-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.valju-ai-choice {
    display: grid;
    gap: 4px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #365748;
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.valju-ai-choice:hover {
    border-color: rgba(121, 164, 145, 0.42);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.valju-ai-choice strong {
    font-size: 13px;
    font-weight: 600;
}

.valju-ai-choice span,
.valju-ai-resolution-note {
    color: rgba(58, 95, 72, 0.72);
    font-size: 12px;
    line-height: 1.5;
}

.valju-ai-resolution-note {
    margin-top: 14px !important;
}

.valju-ai-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.valju-ai-button {
    min-height: 42px;
    border-radius: 16px;
    padding: 0 16px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
}

.valju-ai-button-primary {
    background: rgba(22, 37, 31, 0.88);
    color: #ffffff;
}

.valju-ai-button-secondary {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.18);
    color: #345244;
}

.valju-ai-composer {
    align-self: stretch;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

.valju-ai-input-shell {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(94, 132, 115, 0.2);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.valju-ai-input-shell::before {
    content: none;
}


.valju-ai-input-shell input {
    width: 100%;
    min-width: 2px;
    border: 0;
    background: transparent;
    color: #2f4f40;
    caret-color: #2f4f40;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    padding: 0;
    opacity: 1;
}

.valju-ai-input-shell input::placeholder {
    color: transparent;
}

.valju-ai-input-shell input:focus {
    outline: none;
}

.valju-ai-input-shell input:disabled {
    caret-color: transparent;
}

.valju-ai-placeholder-cycle {
    display: block;
    width: 100%;
    height: 1.35em;
    color: rgba(47, 79, 64, 0.52);
    font-size: 13px;
    line-height: 1.35;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 1;
    transition: opacity 0.38s ease;
}

.valju-ai-placeholder-cycle:empty {
    visibility: hidden;
}

.valju-ai-assistant:not([data-mode="idle"]) .valju-ai-placeholder-cycle {
    display: none;
}

.valju-ai-notice {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    color: #355547;
    font-size: 12px;
}

.valju-ai-reload-note {
    margin-top: 10px !important;
    color: #4c7663 !important;
}

@keyframes valju-ai-blob-float {
    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 58% 42% 36% 64% / 46% 40% 60% 54%;
        transform: rotate(6deg);
    }
}

@keyframes valju-ai-thick-caret-blink {
    0%,
    48% {
        opacity: 1;
    }
    49%,
    100% {
        opacity: 0;
    }
}

@keyframes valju-ai-logo-counter-float {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-6deg);
    }
}

@keyframes valju-ai-logo-attention-spin {
    0%,
    82% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes valju-ai-logo-close-spin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.valju-ai-assistant.is-close-spinning .valju-ai-trigger-logo-spin {
    animation: valju-ai-logo-close-spin 1.0s cubic-bezier(0.34, 1.2, 0.64, 1) 1 0s both;
}

@keyframes valju-ai-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .valju-ai-actions,
    .valju-ai-metadata {
        grid-template-columns: 1fr;
    }

    .valju-ai-actions {
        flex-direction: column;
    }

    .valju-ai-body {
        padding: 36px 14px 14px;
    }

    /* On mobile the panel uses fixed positioning to stay within the viewport,
       keeping its natural width and anchoring to the same side as the trigger */
    .valju-ai-panel,
    .valju-ai-assistant[data-panel-x="left"] .valju-ai-panel,
    .valju-ai-assistant .valju-ai-panel {
        position: fixed;
        right: 8px;
        left: auto;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        top: auto;
        width: var(--valju-ai-expanded-width);
        height: var(--valju-ai-expanded-height);
        max-width: none;
        transform-origin: right bottom;
    }

    .valju-ai-assistant[data-panel-x="right"] .valju-ai-panel {
        right: auto;
        left: 0;
        transform-origin: left bottom;
    }

    .valju-ai-assistant:not([data-mode="idle"]) .valju-ai-messages {
        max-height: min(400px, calc(100vh - 180px));
    }
}

.valju-ai-frame-shell {
    padding: 36px 12px 14px;
    width: 100%;
    height: 100%;
}

.valju-ai-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    background: transparent;
}
