body {
    background-color: #eeeeec;
    font-size: 0.9rem;
}

.toast-container {
    z-index: 9999;
}

.page .sidebar {
    width: 0;
    height: 100vh;
    background-color: white;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0;
    left: 0;
    position: fixed;
    transition: 0.35s;
    z-index: 1050;
}

.page .sidebar::-webkit-scrollbar{
    width: 3px;
    height: 3px;
}

.page .sidebar::-webkit-scrollbar-track{
    box-shadow: inset 0 0 6px rgba(0,0,0,0.00);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.00);
}

.page .sidebar::-webkit-scrollbar-thumb{
    background-color: rgba(0,0,0,.1);
}


.page .content {
    margin-left: 25px;
    margin-right: 25px;
    transition: 0.35s;
    min-height: 100vh;
}

.sidebar.open {
    width: 275px;
}

.content.open {
    margin-left: 300px;
}

@media only screen and (max-width: 768px) {
    .sidebar.open {
        width: 275px;
    }

    .content.open {
        margin-left: 25px;
        opacity: 0.3;
    }
}

.sidebar-logo-container {
    display: flex;
}

.logo-container {
    margin: auto;
}

.logo-sidebar {
    width: auto;
    height: 120px;
}

.sidebar-body {
    margin-top: 30px;
}

.navigation-group {
    margin-bottom: 0px;
    position: relative;
}

.navigation-list {
    list-style-type: none;
    padding: 0 20px;
    opacity: 1;
}

.navigation-list:nth-child(n+2){
    display: block;
    max-height: 1px;
    overflow-y: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    margin-bottom: 0;
}


.navigation-list.active{
    display: block;
    opacity: 1;
    overflow-y: unset;
    max-height: unset;
    height: 100%;
    transition: all 0.5s ease;
    animation: fade 1s ease-in-out;
}


@keyframes fade {
    0% {
        opacity: 0.5;
        height: 0;
    }
    100% {
        opacity: 1;
        height: 100%;
    }
}

.bi.bi-chevron-expand{
    position: absolute;
    right:0;
    margin-right: 20px;
    font-size: 18px;
}

.navigation-list-header {
    padding: 12px 38px 12px 38px;
    border-radius: 3px;
    color: #a6a4b0;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.navigation-list-header:hover{
    background-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
    .navigation-list-header:hover{
        background-color: #fff;
    }
}

.navigation-list-item {
    padding: 10px 18px 10px 18px;
    border-radius: 5px;
    margin: 4px 0;
}

.navigation-list-item:hover {
    padding-left: 20px;
    background-color: rgba(0, 0, 0, 0.1);
}

.navigation-list-item.active {
    background-color: rgba(255, 139, 64, 255);
}

.navigation-link {
    text-decoration: none;
    color: #625f6e;
}

.nav-item-text {
    margin-left: 10px;
}

.navigation-list-item:hover .navigation-link {
    color: #625f6e;
}

.navigation-list-item.active .navigation-link {
    color: white;
}

.sticky-profile {
    background-color: white;
    margin-top: 15px;
    padding: 0 18px 0 18px;
    border-radius: 5px;
    min-width: 100%;
}

.user-status {
    font-size: small;
}

.page-title {
    margin-top: 15px;
    padding: 10px 18px 10px 18px;
    display: flex; /* Use flexbox to align items horizontally */
    justify-content: space-between; /* Distribute content to both ends of the flex container */
    align-items: center;
}

.page-title h2 {
    margin: 0; /* Remove default margin for h2 */
}

.content-body {
    background-color: white;
    margin: 15px 0;
    padding: 25px 18px 25px 18px;
}

.dropdown-item:hover:active:focus:target {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-primary {
    color: #fff;
    background-color: rgba(255, 139, 64, 255);
    border-color: rgba(255, 139, 64, 255);
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.btn-primary:hover {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
    color: #fff;
    background-color: #F0C993;
    border-color: #F0C993;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary:disabled, btn-primary[disabled] {
    color: #fff;
    background-color: #F0C993;
    border-color: #F0C993;
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
    background-color: rgba(255, 139, 64, 255) !important;
    border-color: rgba(255, 139, 64, 255) !important;
}

.btn-primary .badge {
    color: rgba(255, 139, 64, 255);
    background-color: #fff;
}

.nav-link {
    color: #495057;
}

.nav-link:hover {
    color: #495057;
    background-color: rgba(0, 0, 0, 0.1);
}

.nav-link.active {
    background-color: rgba(255, 139, 64, 255) !important;
    color: #fff !important;
}

.select2-results__option--selected {
    display: none;
}

.btn-outline-primary {
    color: rgba(255, 139, 64, 255);
    border-color: rgba(255, 139, 64, 255);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.swal2-confirm {
    color: #fff;
    background-color: rgba(255, 139, 64, 255) !important;
    border-color: rgba(255, 139, 64, 255) !important;
}

.swal2-confirm:focus,
.swal2-confirm.focus {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}

.swal2-confirm:hover {
    color: #fff;
    background-color: #F0B36A;
    border-color: #F0B36A;
}
.__pasti-simple-tools-proximity-report-preview table thead tr td{
    background-color: white;
    min-width: 100px;
}

.__pasti-simple-tools-proximity-report-preview table tbody tr td{
    background-color: white;
    min-width: 100px;
}


.__pasti-simple-tools-proximity-report-preview table thead tr td:nth-child(1){
    background-color: white;
    min-width: 60px;
    position: sticky;
    border-width: 0;
    left: 0;
}

.__pasti-simple-tools-proximity-report-preview table thead tr td:nth-child(1)::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    border: 1px solid #e7e7e7;
}

.__pasti-simple-tools-proximity-report-preview table tbody tr td:nth-child(1){
    background-color: white;
    min-width: 30px;
    position: sticky;
    border-width: 0;
    left: 0;
}

.__pasti-simple-tools-proximity-report-preview table tbody tr td:nth-child(1)::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    border: 1px solid #e7e7e7;
}


@media screen and (min-width: 786px) {

    .__pasti-simple-tools-proximity-report-preview table thead tr td{
        background-color: white;
        min-width: 175px;
    }

    .__pasti-simple-tools-proximity-report-preview table tbody tr td{
        background-color: white;
        min-width: 175px;
    }
    .__pasti-simple-tools-proximity-report-preview table thead tr td{
        background-color: white;
        min-width: 160px;
    }

    .__pasti-simple-tools-proximity-report-preview table tbody tr td{
        background-color: white;
        min-width: 160px;
    }


    .__pasti-simple-tools-proximity-report-preview table thead tr td:nth-child(1){
        background-color: white;
        min-width: 160px;
        position: sticky;
        border-width: 0;
        left: 0;
    }

    .__pasti-simple-tools-proximity-report-preview table thead tr td:nth-child(1)::after{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 100%;
        border: 1px solid #e7e7e7;
    }

    .__pasti-simple-tools-proximity-report-preview table tbody tr td:nth-child(1){
        background-color: white;
        min-width: 160px;
        position: sticky;
        border-width: 0;
        left: 0;
    }

    .__pasti-simple-tools-proximity-report-preview table tbody tr td:nth-child(1)::after{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 100%;
        border: 1px solid #e7e7e7;
    }

    .__pasti-simple-tools-proximity-report-preview table thead tr td:nth-child(2){
        background-color: white;
        min-width: 140px;
        position: sticky;
        border-width: 0;
        left: 160px;
    }

    .__pasti-simple-tools-proximity-report-preview table thead tr td:nth-child(2)::after{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 100%;
        border: 1px solid #e7e7e7;
    }

    .__pasti-simple-tools-proximity-report-preview table tbody tr td:nth-child(2){
        background-color: white;
        min-width: 140px;
        position: sticky;
        border-width: 0;
        left: 160px;
    }

    .__pasti-simple-tools-proximity-report-preview table tbody tr td:nth-child(2)::after{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 100%;
        border: 1px solid #e7e7e7;
    }

}

._button-naviagtion-preview{
    width: 150px;
    display: flex;
    justify-content: start;
    align-items: center;
    height: 50px;
    margin: 10px;
}

._button-naviagtion-preview:nth-child(1){
    justify-content: end;
}

._button-naviagtion-preview p{
    margin-bottom: 0;
    font-size: medium;
    font-weight: 600;
}
._button-naviagtion-preview div{
    padding: 0px 30px;
}
._pas-kalkulator-input-address-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
._pas-kalkulator-input-address-content i{
    position: absolute;
    right: 0;
    height: 41px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}
._pas-kalkulator-input-address{
    padding: 8px 40px 8px 8px;
}
._pas-kalkulator-map{
    display: none;
    height: 450px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    ._pas-kalkulator-map{
        height: 500px;
        width: 100%;
    }
    ._pas-kalkulator-input-address{
        padding: 8px 30px 8px 8px;
    }
}

._pas-kalkulator-message{
    font-size: 11px;
}
._pas-kalkulator-message-red{
    font-size: 11px;
    color: red;
}

#suggestions {
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background-color: white;
}

.suggestion {
    padding: 5px;
    cursor: pointer;
}

.suggestion:hover,
.suggestion.selected {
    background-color: #f0f0f0;
}

.mention {
    font-weight: bold;
}

/* Mobile responsive optimizations */
@media (max-width: 767px) {
    .content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .content-body {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 10px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 20px !important;
    }
    .sticky-profile {
        margin-top: 0 !important;
    }
    .page-title {
        padding: 8px 12px !important;
    }
    .page-title h2 {
        font-size: 1.25rem !important;
    }
    .page-title .logo-dandelion {
        width: 28px !important;
    }
}
