/*!******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles.css ***!
  \******************************************************************/
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap'); */

/* @font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
} */

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter_18pt-Thin.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter_18pt-ExtraLight.ttf) format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter_18pt-Light.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter_18pt-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter_18pt-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter_18pt-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter_18pt-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter_18pt-ExtraBold.ttf) format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter_18pt-Black.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* body { */
    /* overflow: hidden; */
    /* font-family: 'Inter', sans-serif; */
    /* background-color: #ffffff; */
    /* font-optical-sizing: none; */
/* } */

.mapboxgl-ctrl-logo {
    z-index: 1;
}

.waygo-map-modal-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* semi-transparent background */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* ensure it's above other map elements */

}

.waygo-map-modal-content {
    background-color: black;
    border-radius: 0px;
    width: 100%;          /* Changed from max-width to width */
    height: 100%;         /* Changed from max-height to height */
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.waygo-map-modal-content.photo-modal {
    display: flex;
    flex-direction: column;
    /* padding: 20px; */
    box-sizing: border-box;
    position: relative;
}

.content-details-image-container {
    position: relative;
    cursor: pointer;
    /* margin-top: 10px; */
}

.content-details-preview-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 16px;
    margin-bottom: -8px;
}

.image-hover-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s;
}

.content-details-image-container:hover .image-hover-popup {
    opacity: 1;
}

.logo-image-container {
    position: absolute;
    right: 6px;
    bottom: 8px;
    height: 20px;
    max-height: 30px; /* Add explicit max-height */
    width: 80px;
    max-width: 130px; /* Add explicit max-width */
    cursor: pointer;
    display: flex; /* Add flex display */
    /* background-color: red; */
    /* position: absolute; */
    /* bottom: 10; */
    /* left: 0px;  */
    /* bottom: 0; */
    /* z-index: 10;  */
    /* background-color: red;
    right: 6px;
    bottom: 2px;
    height: fit-content;
    width: fit-content;
    cursor: pointer; */
}

/* .logo-outline-element { */
/* .logo-fill-element { */
    /* position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3; */
    /* background-color: blue; */
/* } */

.logo-outline-element {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;

    width: 80px;
    z-index: 0;
    height: 20px;
    opacity: 0.3;
    /* background-color: orange; */
}

.logo-fill-element {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 20px;
    z-index: 0;
    opacity: 1;
    /* background-color: purple; */
}

.website-container {
    position: absolute;
    /* right: 10px; */
    /* bottom: 10px; */
    right: 0px;
    bottom: 0px;
    height: fit-content;
    width: fit-content;
    cursor: pointer;
    /* background-color: rgba(255, 255, 255, 1.0); */
    background-color: rgba(255, 255, 255, 0.45);
    padding: 0px 5px;
    /* padding: 3px 10px; */
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #1e1e1e;
    /* border-radius: 30px; */
}

.website-container:hover {
    background-color: rgba(255, 255, 255, 0.7); /* Less transparent background on hover */
    text-decoration: underline; /* Underline text on hover */
}


/* ------------------------------------------------- */
/* Main MapView Container */
/* ------------------------------------------------- */

.inner-map-container {
    position: relative;
    z-index: 0;
    display: flex;
    /* display: fle; */
    flex-direction: column;
    overflow: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    /* bottom: 0; */
    /* bottom: -30px; */
    /* background-color: green; */
    box-sizing: border-box;
    height: 100%;
    /* background-color: purple; */
    background-color: #ffffff;
    /* border: 10px lightblue; */
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* A - CONTROLS */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

/* .hidden {
    display: none;
} */

/* ------------------------------------------------- */
/* SearchBox Control */
/* ------------------------------------------------- */

.search-box-control-container {
    position: relative;
    display: flex;
    height: fit-content;
    /* display: none; */
    /* overflow: hidden; */
    flex: 0 0 auto;
    /* background-color: orange; */
    padding: 14px 14px 0px 14px;
    /* z-index: 200; */
}

.search-box-control-container.desktop-view {
    /* padding: 14px 14px 0px 14px; */
    width: 400px;
    box-sizing: border-box;
    /* background-color: blue; */
}

.search-box-control-container.mobile-view {
    /* padding: 14px 16px 0px 16px; */
    /* width: calc(100% - 32px); */
    width: 100%;
    /* background-color: orange; */
    box-sizing: border-box;
}

/* Styles for desktop view */
/* @media (min-width: 768px) {
    .search-box-control-container {
        padding: 14px 14px 10px 14px;
        width: 400px;
        box-sizing: border-box;
} */

/* Styles for mobile view */
/* @media (max-width: 767px) {
    .search-box-control-container {
        padding: 16px 16px 12px 16px;
        width: calc(100% - 32px);
        
    }
} */

/* .search-box-control-container.visible {
    display: block;
} */

/* .search-box-control-container.hidden {
    display: none;
} */

/* ------------------------------------------------- */
/* CategoryBar Control */
/* ------------------------------------------------- */

.category-bar-control-container {
    display: flex;
    position: relative;
    /* width: 400px; */
    height: fit-content;
    /* padding: 0 14px 0 14px; */
    box-sizing: border-box;
    /* overflow: hidden; */
    overflow-x: auto;
    overflow-y: visible;
    flex: 0 0 auto;
    /* background-color: purple;/ */
    /* margin: 4px 3px; */
    overflow: visible;
    padding: 8px 14px 0px 14px;

}

.category-bar-control-container.desktop-view {
    /* padding: 8px 14px 0px 14px; */
    width: 400px;
    /* margin-top: 8px; */
    /* box-sizing: border-box; */
    /* box-sizing: border-box; */
    /* background-color: purple; */
    /* display: none; */

}

.category-bar-control-container.mobile-view {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    /* overflow-x: auto; */
    height: fit-content;

}

/* .category-bar-control-container.visible {
    display: block;
} */

/* .category-bar-control-container.hid {
    display: none;
} */


/* @media (min-width: 768px) {
    .category-bar-control-container {
        width: 400px;
    }
} */

/* Styles for mobile view */
/* @media (max-width: 767px) {
    .category-bar-control-container {
        width: calc(100%);
    }
} */


/* ------------------------------------------------- */
/* FloorSelector Control */
/* ------------------------------------------------- */

.floor-selector-control-container {
    display: flex;
    position: relative;
    /* width: 400px; */
    height: fit-content;
    /* padding: 0 14px 0 14px; */
    border-radius: 14px;
    box-sizing: border-box;
    /* overflow: hidden; */
    overflow-x: auto;
    overflow-y: visible;
    flex: 0 0 auto;
    /* background-color: white; */
    /* margin: 14px 14px; */
    overflow: visible;
    /* padding: 8px 14px 0px 14px; */

}

.floor-selector-control-container.desktop-view {
    position: absolute;
    /* width: fit-content; */
    /* width: 60px; */
    box-sizing: border-box;
    /* background-color: blue; */
    /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); */
    /* height: 200px; */
    height: fit-content;
    right: 0;
    /* left: 385px;/ */
    /* top: 0px; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
}

.floor-selector-control-container.mobile-view {
    position: absolute;
    width: fit-content;
    box-sizing: border-box;
    height: fit-content;
    /* right: 0; */
    /* top: 20%; */
    /* transform: translateY(-50%); */
    bottom: 30px;
    /* background-color: orange; */
    /* position: relative;
    width: 100%;
    box-sizing: border-box;
    /* overflow-x: auto; */
    /* height: fit-content; */
    /* padding: 8px 14px 0px 14px; */
}

/* ------------------------------------------------- */
/* SearchResults Control */
/* ------------------------------------------------- */

.search-results-control-container {
    /* display: none; */
    position: relative;
    /* fl */

    /* max-height: 100%; */
    z-index: 1;
    overflow-y: hidden;
    overflow-x: hidden;
    /* background-color: blue; */
    border-radius: 15px;
    display: flex;
    /* height: fit-content;  */
    scrollbar-width: none;
    /* Firefox */
}

.search-results-control-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.search-results-control-container.desktop-view {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 0 1 100%;

    width: 400px;
    box-sizing: border-box;

    /* max-height: fit-content; */
    /* max-height: calc(100% - 400px); */
    padding: 8px 14px 34px 14px;
}

.search-results-control-container.mobile-view {
    position: absolute;
    box-sizing: border-box;
    bottom: 0px;
    /* flex-grow: 1 1 50%; */
    height: 45%;
    /* max-height: 45%; */
    /* width: calc(100% - 32px); */
    /* max-height: fit-content; */
    /* height: 100%; */
    border-radius: 16px;
    width: 100%;
    padding: 10px 16px 16px 16px;
}

/* Styles for desktop view */
/* @media (min-width: 768px) {
    .search-results-control-container {
        width: 400px;
        height: 100%;
        box-sizing: border-box;
        padding: 10px 14px 14px 14px;
    }
} */

/* Styles for mobile view */
/* @media (max-width: 767px) {
    .search-results-control-container {
        position: fixed;
        bottom: 0px;
        width: calc(100% - 32px);
        padding: 10px 16px 16px 16px;
    }
} */

/* .search-results-control-container.visible {
    display: block;
} */

/* ------------------------------------------------- */
/* Setup Control */
/* ------------------------------------------------- */

.setup-control-container {
    /* flex-direction: row; */
    position: relative;
    gap: 8px;
    overflow-y: auto;
    /* background-color: blue; */
    height: fit-content;
    display: flex;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2;
}

.setup-control-container.desktop-view {
    position: relative;
    display: flex;
    flex-direction: column;
    /* flex-grow: 0 1 100%; */

    width: 400px;
    height: fit-content;
    box-sizing: border-box;

    /* margin-top: 10px; */
    padding: 10px 11px 10px 11px;
    overflow-y: auto;
}

.setup-control-container.mobile-view {
    position: absolute;
    box-sizing: border-box;
    bottom: 0px;
    top: auto;
    height: 45vh;
    border-radius: 16px;
    width: 100%;
    padding: 2px 13px 0px 13px;
    /* z-index: 9; */
    overflow-y: hidden;
}

.setup-control-container::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Edge */
}

/* ------------------------------------------------- */
/* ContentPlacement Control */
/* ------------------------------------------------- */

.content-details-control-container {
    /* flex-direction: row; */
    position: relative;
    gap: 8px;
    /* z-index: 10; */
    overflow-y: auto;
    /* background-color: blue; */
    height: fit-content;
    /* max-height: 100%; */
    /* width: fit-content; */
    display: flex;
    position: relative;
    /* background-color: orange; */
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2;
}

.content-details-control-container.desktop-view {
    position: relative;
    display: flex;
    flex-direction: column;
    /* flex-grow: 0 1 100%; */

    width: 400px;
    box-sizing: border-box;

    margin-top: -12px;
    padding: 19px 11px 0 11px;
    overflow-y: auto;
}

/* .content-details-control-container.mobile-view {
    position: absolute;
    box-sizing: border-box;
    bottom: 0px;
    height: 45%;
    border-radius: 16px;
    width: 100%;
    padding: 2px 13px 0px 13px;
} */

.content-details-control-container.mobile-view {
    position: absolute;
    box-sizing: border-box;
    bottom: 0px;
    top: auto;
    height: 45vh;
    border-radius: 16px;
    width: 100%;
    padding: 2px 13px 0px 13px;
    /* z-index: 9; */
    overflow-y: hidden;
    /* background-color: beige; */
    /* Prevent internal scrolling */
    /* transition: bottom 0.3s ease; */
}

/* Styles for desktop view */
/* @media (min-width: 768px) {
    .content-details-control-container {
        width: fit-content;
        box-sizing: border-box;
        /* padding: 10px 14px 36px 14px; */
/* padding: 0px 11px 0 11px; */
/* } */
/* } */

/* Styles for mobile view */
/* @media (max-width: 767px) {
    .content-details-control-container {
        position: fixed;
        bottom: 0px;
        height: fit-content;
        width: 100%;
        /* padding: 10px 16px 16px 16px; */
/* } */
/* } */

/* .content-details-control-container.visible {
    display: flex;
} */

.content-details-control-container::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Edge */
}


/* ------------------------------------------------- */
/* Directions Control */
/* ------------------------------------------------- */

.directions-control-container {
    /* display: block; */
    display: flex;
    position: absolute;
    width: 400px;
    /* height: 400px; */
    padding: 14px 14px 14px 14px;
    box-sizing: border-box;
    /* background-color: blue; */
}

.directions-control-container.desktop-view {
    position: absolute;
    display: flex;
    flex-grow: 0 1 100%;
    width: 400px;
    border-radius: 25px;
    /* background-color: blue; */
    /* bottom: 0; */
    /* border-radius: 50px; */
    /* max-height: 100%; */
    /* background-color: blueviolet; */
}

.directions-control-container.mobile-view {
    position: absolute;
    box-sizing: border-box;
    /* bottom: 0px; */
    /* height: 45%; */
    border-radius: 16px;
    width: 100%;
    height: fit-content;
    /* padding: 2px 13px 0px 13px; */
    z-index: 4;
}

/* .directions-control-container.visible {
    display: block;
} */

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* COMPONENTS */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

/* ------------------------------------------------- */
/* SearchBox Component */
/* ------------------------------------------------- */

.search-box {
    position: relative;
    width: 100%;
    flex: 0 1 auto;
    /* background-color: green; */
    /* z-index: 2100; */
}

.search-bar-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 14px;
    height: fit-content;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    padding: 0 14px 0 14px;
    /* background-color: orange; */
    /* z-index: 201; */
}

.search-bar-container.mobile-view {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 20px;
    height: fit-content;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    padding: 0 14px 0 14px;
    /* background-color: orange; */
    /* z-index: 5; */
}

.search-bar-container.with-results {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.search-bar::placeholder {
    color: #7d7d7d;
}

.search-bar {
    /* z-index: 2; */
    position: relative;
    flex: 1;
    padding: 16px 10px 16px 10px;
    border: none;
    outline: none;
    border-radius: 14px;
    height: fit-content;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1e1e1e;
    box-sizing: border-box;
    /* background-color: orange; */
    /* z-index: 1; */
    /* z-index: 202; */
}

.search-bar.mobile-view {
    font-size: 16px;
}

.search-bar-button-right {
    position: relative;
    background: white;
    border-radius: 10px;
    border: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar-button-right img {
    position: relative;
    width: 20px;
    height: 20px;
    z-index: 101;
}

.search-bar-button-left {
    position: relative;
    background: white;
    border-radius: 8px;
    border: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar-button-left img {
    position: relative;
    width: 14px;
    height: 14px;
    z-index: 101;
    display: block;
}

.search-bar-suggestions-view {
    position: absolute;
    z-index: 203;
    border: none;
    outline: none;
    background-color: white;
    max-height: 250px;
    overflow-y: auto;
    box-sizing: border-box;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 14px 14px;
    border-top: 1px solid #e5e5e7;
    padding: 8px 0 8px 0;
    display: none;
    width: 100%;
    /* background-color: brown; */
}

.search-bar-suggestions-view::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.search-bar-suggestions-view.visible {
    display: block;
}

.search-bar-suggestions-view-cell {
    padding: 16px 24px 16px 24px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1e1e1e;
    cursor: pointer;
    z-index: 204;
    /* background-color: orange; */
}

.search-bar-suggestions-view-cell:hover {
    background-color: #f5f5f5;
}

.suggestion-subtitle {
    color: #6a6a6a;
    font-weight: 400;
    padding-top: 2px;
}

/* ------------------------------------------------- */
/* SliderBar Component */
/* ------------------------------------------------- */

.slider-bar-container {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    /* flex: 1 1 auto; */
    /* flex: 0 0 100%; */
    align-items: center;
    width: 100%;
    overflow-x: auto;
    /* background-color: orange; */
    box-sizing: border-box;
    /* padding: 3px 2px; */
    overflow: visible;
    /* overflow-y: visible; */

}


.slider-bar {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 4px 0px;
    scroll-behavior: smooth;
    flex-grow: 1;
    gap: 7px;
    scrollbar-width: none;
    box-sizing: border-box;
    border-radius: 20px;
}

.slider-bar::-webkit-scrollbar {
    display: none;
}

.slider-bar-button {
    flex: 0 0 auto;
    padding: 6px 12px;
    background-color: white;
    display: flex;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #1e1e1e;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    /* border: 1px solid rgba(0, 0, 0, 0.17); */
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.slider-bar-button.mobile-view {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.slider-bar-button-image {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.slider-bar-button:hover {
    background-color: #f7f7f7;
}

.slider-bar-button.selected {
    background-color: #1e1e1e;
    color: white;
}

.slider-bar-button.inverted {
    background-color: #1e1e1e;
    color: white;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #1e1e1e;
    border: none;
    border-radius: 12px;
    width: 32px;
    height: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 100;
    display: none;
    cursor: pointer;
    z-index: 1;
    box-sizing: border-box;
    /* overflow: visible; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.scroll-button.left {
    left: 0;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    /* margin-left: 3px; */
    /* overflow: visible; */
}

.scroll-button.right {
    right: 0;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    /* margin-right: 3px; */
}

.scroll-button:hover {
    background-color: #f7f7f7;
}

/* ------------------------------------------------- */
/* FloorSelector SliderBar Component */
/* ------------------------------------------------- */

.floor-selector {
    position: relative;
    display: flex;
    flex-grow: 1;
    /* flex-direction: column; */
    /* flex: 1 1 auto; */
    /* flex: 0 0 100%; */
    align-items: center;
    width: 100%;
    overflow-y: auto;
    /* background-color: orange; */
    /* background-color: white; */
    /* margin-right: 14px; */
    box-sizing: border-box;
    /* padding: 3px 2px; */
    overflow: visible;
    /* overflow-y: visible; */

}


.floor-selector-bar {
    display: flex;
    overflow-y: auto;
    flex-direction: column-reverse;
    /* overflow-y: visible; */
    white-space: nowrap;
    /* padding: 4px 0px; */
    scroll-behavior: smooth;
    /* background-color: blue; */
    flex-grow: 1;
    /* flex: 1 1 100% !important; */
    /* width: calc(100% - 50px); */
    /* max-width: 600px; */
    padding: 16px 16px;
    /* gap: 10px; */
    gap: 10px;
    scrollbar-width: none;
    /* width: fit-content !important; */
    box-sizing: border-box;
    /* border-radius: px; */
    /* overflow: hidden; */
    /* background-color: orange; */
}

.floor-selector-button {
    flex: 0 0 auto;
    /* padding: 8px 8px; */
    /* padding: 10px 1px; */
    /* width: 44px;
    height: 44px; */
    width: 50px;
    height: 50px;
    background-color: white;
    display: flex;
    border: none;
    border-radius: 20px;
    /* border-radius: 50%; */
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #1e1e1e;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    align-items: center;
    justify-content: center;
    overflow: visible;
    /* background-color: blue; */
}

.floor-selector-button.mobile-view {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.floor-selector-button-image {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.floor-selector-button:hover {
    background-color: #f7f7f7;
}

.floor-selector-button.selected {
    background-color: #202020;
    color: white;
}

.floor-selector-button.inverted {
    background-color: #1e1e1e;
    color: white;
}

.floor-selector-scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #1e1e1e;
    border: none;
    border-radius: 12px;
    width: 32px;
    height: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 100;
    display: none;
    cursor: pointer;
    z-index: 1;
    box-sizing: border-box;
    /* overflow: visible; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.floor-selector-scroll-button:hover {
    background-color: #f7f7f7;
}

/* ------------------------------------------------- */
/* LegSelector SliderBar Component */
/* ------------------------------------------------- */

.leg-selector {
    padding-bottom: 10px;
}


/* .leg-selector-bar {} */


/* ------------------------------------------------- */
/* SearchResultsView Component */
/* ------------------------------------------------- */

.search-results-view {
    display: block;
    /* visibility: hidden; */
    position: relative;
    flex-direction: column;
    /* flex-grow: 1; */
    z-index: 2;
    border: none;
    outline: none;
    background-color: white;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    width: 100%;
    /* max-height: 100%;  */
    height: 100%;
    /* max-height: fit-content; */
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    /* border-top: 1px solid #e5e5e7; */
    padding: 8px 0 8px 0;
    /* background-color: #e5e5e7; */
    scrollbar-width: none;
    /* Firefox */
}

.search-results-view::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
    visibility: visible;
}

.loading-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.loading-spinner {
    width: 20px;
    /* Set the width of the spinner */
    height: 20px;
    /* Set the height of the spinner */
    border: 2px solid rgba(0, 0, 0, 0.1);
    /* Light border */
    border-top-color: #434343;
    /* Color of the rotating part */
    border-radius: 50%;
    /* Make it circular */
    animation: spin 0.8s ease infinite;
    /* Rotation animation */
}

/* Keyframes for the spin animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Styles for desktop view */
/* @media (min-width: 768px) {
    .search-results-view {
        box-sizing: border-box;
        max-height: 100vh;
    }
} */

/* Styles for mobile view */
/* @media (max-width: 767px) {
    .search-results-view {
        max-height: calc(45vh);
    }
} */

.search-results-view.visible {
    display: block;
}

.search-results-view-cell {
    padding: 12px 26px 12px 26px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e;
}

.search-results-view-cell:hover {
    background-color: #f5f5f5;
}

.result-subtitle {
    /* color: #a7a3a3; */
    color: #6a6a6a;
    font-weight: 400;
    font-size: 13px;
    padding-top: 2px;
}

.search-results-title {
    /* position: relative; */
    /* display: block; */
    padding: 12px 24px 10px 24px;
    height: fit-content;
    margin: 0;
    /* color: #a3a3a3; */
    color: #6a6a6a;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
}

/* ------------------------------------------------- */
/* ContentPlacementView Component */
/* ------------------------------------------------- */

.content-details {
    /* position: relative; */
    display: block;
    overflow-y: auto;
    box-sizing: border-box;
    /* scrollbar-width: none; */
    padding: 0 3px 14px 3px;
    /* z-index: 11; */
    /* background-color: palegoldenrod; */
}

/* Styles for desktop view */
/* @media (min-width: 768px) {
    .content-details {
        margin-top: 4px;
        width: calc(400px - 11px - 11px);
        box-sizing: border-box;
    }
} */

/* Styles for mobile view */
/* @media (max-width: 767px) {
    .content-details {
        position: fixed;
        flex-direction: column;
        bottom: 0px;

        width: 100%;
        max-height: 50vh;
        padding: 0 16px 16px 16px;
    }
} */

/* .content-details::-webkit-scrollbar {
    display: none;
} */

.content-details-header {
    position: relative;
    height: fit-content;
    /* padding: 34px 24px 24px 24px; */
    padding: 34px 24px 24px 24px;
    box-sizing: border-box;
    background-color: white;
    border: none;
    outline: none;
    overflow-x: hidden;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.10);
    border-radius: 14px;
    margin-top: 6px;
    /* background-color: blue; */
}

.content-details-section-title {
    font-size: 15px;
    color: #1e1e1e;
    font-weight: 600;
    width: fit-content;
    font-family: "Inter", sans-serif;
    padding: 0px 0 20px 0;
    box-sizing: border-box;
}

.content-details-section {
    border-radius: 14px;
    box-sizing: border-box;
    margin: 0;
}

.content-details-action-buttons {
    display: flex;
    /* z-index: 5; */
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 18px;
    box-sizing: border-box;
}

.content-details-directions-button {
    background-color: #1e1e1e;
    color: white;
    /* padding: 12px; */
    height: 40px;
    width: 100%;
    border-radius: 20px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    border: none;
    cursor: pointer;
}

.content-details-directions-button:hover {
    background-color: #141414;
    font-weight: 450;
}

.content-details-share-button {
    background-color: #f7f7f7;
    width: 100%;
    color: #1e1e1e;
    /* padding: 12px; */
    height: 40px;
    border-radius: 20px;
    border: none;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.content-details-share-button:hover {
    background-color: #f0f0f0;
    font-weight: 500;
}

.copy-icon {
    width: 18px;
    /* Adjust size as needed */
    height: 18px;
}

.copy-popup {
    padding: 8px 16px;
    background-color: #171717;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    font-weight: 400;
    font-family: "Inter", "sans-serif";
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s;
}

.content-placement-header {
    position: relative;
    /* z-index: 3; */
    height: fit-content;
    border: none;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 24px;
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.header-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.header-catalog-name {
    font-size: 13px;
    color: #a19e9e;
    font-weight: 400;
    /* font-weight: 800; */
    width: fit-content;
    font-family: "Inter", "sans-serif";
}

.header-parent-name {
    font-size: 13px;
    color: #8a8a8a;
    font-weight: 500;
    /* font-weight: 800; */
    width: fit-content;
}

.header-content-name {
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", "sans-serif";
    color: #1e1e1e;
}

.header-image-view {
    display: flex;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    background-color: #f4f4f5;
    box-sizing: border-box;
    flex-shrink: 0;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    align-items: center;
    justify-content: center;
}

.header-image {
    /* background-color: blue; */
    border-radius: 12px;
    background-color: #f4f4f5;
    width: 30px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.contextual-location-view {
    display: flex;
    align-items: center;
    width: 100%;
    height: fit-content;
    position: relative;
    /* z-index: 3; */
    border: none;
    outline: none;
    box-sizing: border-box;
    overflow: hidden;
    padding: 8px 8px 8px 4px;
    cursor: pointer;
    border-radius: 14px;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.contextual-location-view:hover {
    background-color: #f7f7f7;
}

.contextual-location-image {
    width: 20px;
    /* Adjust as needed */
    height: 20px;
}

.contextual-location-text {
    font-size: 13px;
    /* Adjust as needed */
    /* font-weight: 450; */
    font-weight: 400;
    font-family: "Inter", "sans-serif";
    text-align: left;
    color: #1e1e1e;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.content-placement-details-view {
    display: flex;
    position: relative;
    width: 100%;
    height: fit-content;

    /* z-index: 10; */
    background-color: white;
    border: none;
    outline: none;
    box-sizing: border-box;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    margin-top: 12px;
    margin-bottom: 2px;
    padding: 24px;
    font-size: 22px;
    font-weight: 600;
    font-family: "Inter", "sans-serif";
    flex-direction: column;
    overflow-x: hidden;
}

.details-view-item {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    gap: 0;
}

.details-view-key {
    font-weight: 400;
    font-size: 12px;
    color: #a19e9e;
    overflow: hidden;
    padding-bottom: 2px;
    height: fit-content;
    font-family: "Inter", "sans-serif";
}

.details-view-value {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    font-family: "Inter", "sans-serif";
    overflow: hidden;
    height: fit-content;
    color: #1e1e1e;
    /* margin: 0 0 5px 0; */
}

.details-view-line {
    width: 100%;
    border: none;
    border-top: 1px solid #f1f1f1;
    margin: 16px 0;
}

.content-placement-action-bar-button {
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 13px;
    /* font-weight: 450; */
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.content-placement-action-bar-scroll-button {
    width: 34px;
    height: 34px;
}

.content-placement-action-bar-scroll-button.left {
    background-size: 50%;
}

.content-placement-action-bar-scroll-button.right {
    background-size: 50%;
}


.content-children-view {
    display: flex;
    position: relative;
    width: 100%;
    height: fit-content;
    /* z-index: 10; */
    background-color: white;
    border: none;
    outline: none;
    box-sizing: border-box;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    margin-top: 14px;
    margin-bottom: 2px;
    padding: 24px;
    font-size: 22px;
    font-weight: 600;
    font-family: "Inter", "sans-serif";
    flex-direction: column;

}

.content-details-children-list-view {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    gap: 12px;
}

.content-details-child-view {
    width: 100%;
    height: fit-content;
    /* padding: 14px; */
    padding: 16px;
    padding-left: 16px;
    background-color: #f7f7f7;
    /* background-color: white; */
    /* border: 1px solid #dcdcdc; */
    border: none;
    text-align: left;
    /* border-radius: 12px; */
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", "sans-serif";
    /* background-color: blue; */
}

.content-details-child-view:hover {
    background-color: #f0f0f0;
    /* background-color: #f5f5f5; */
    /* border: 1px solid #f5f5f5; */
}


.content-details-child-view-title {
    color: #1e1e1e;
    margin-bottom: 14px;
}

/* .content-details-child-view-subtitle {
    color: #999999;
} */

.content-details-child-view-data-row {
    margin-top: 8px;
}

.content-details-child-view-data-key {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    /* Ensures uppercase text */
    color: #9a9a9a;
    /* Customize the color */
    margin-bottom: 3px;
    /* Spacing between key and value */
}

.content-details-child-view-data-value {
    font-size: 13px;
    color: #525252;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 400;
    text-overflow: ellipsis;
    /* Adds "..." if the value is too long */
    /* max-width: 100%; Adjust as necessary */
    display: block;
}



/* ------------------------------------------------- */
/* DirectionsView Component */
/* ------------------------------------------------- */

.directions-view {
    position: relative;
    width: 100%;
    height: fit-content;
    z-index: 10;
}

.directions-view-header {
    position: relative;
    display: block;
    padding: 56px 24px 24px 24px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* z-index: 9; */
    box-sizing: border-box;
}

.directions-search-boxes-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.directions-circles-search-wrapper {
    display: flex;
    flex-direction: row;
}

.directions-circles-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    margin-left: 2px;
}

.large-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
    border: 1.5px solid #343434;
    margin: 11px 0;
}

.end-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
    border: 1.5px solid #343434;
    margin: 11px 0;
}

.small-circle {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #b3b3b3;
    /* Grey for small circles */
    margin: 3px 0;
}

.steps-view {
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
    /* background-color: ; */
    flex-grow: 0 1 100%;
    
    overflow-y: hidden;
    /* height: auto; */
    /* max-height: 520px; */
    padding: 18px 18px 2px 18px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 4;
    box-sizing: border-box;
    margin-top: 14px;
    width: 100%;
    /* height: calc(100% - 700px); */
    /* background-color: orange; */
    /* border-radius: 50px; */
    /* max-height: calc(10%); */
    /* align-items: center; */
}

.steps-container {
    flex: 1;
    overflow-y: scroll;
    box-sizing: border-box;
    max-height: 38vh;
    margin: 10px 5px 16px 0;
    
    /* background-color: #f5f5f5; */
}

.toggle-steps-button {
    margin: 0 0 14px 0;
    /* padding: 10px 16px; */
    font-size: 14px;
    cursor: pointer;
    width: 100%;

    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #7a7a7a;
    /* border: 1px solid #d8d8d8; */
    border: none;
    background-color: white;
    /* border: none; */
    /* background-color: #343434; */
    border-radius: 12px;
    
}

.steps-view h2 {
    font-size: 15px;
    color: #1e1e1e;
    font-weight: 600;
    width: fit-content;
    font-family: "Inter", sans-serif;
    padding: 0px 0 6px 0;
    box-sizing: border-box;
    /* background-color: orange; */
}

.steps-view ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    /* padding: 0px 0 0 0; */
    /* background-color: blue; */
    /* gap: 10px; */
    /* background-color: orange; */
}

.steps-view li {
    /* background: #f7f7f7; */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);  */
    /* padding: 10px; */
    /* padding-left: 22; */
    /* border-radius: 4px; */
    font-family: "Inter", sans-serif;
    width: 100%;
    height: fit-content;
    border: none;
    text-align: left;
    /* border-radius: 14px; */
    /* border-radius: 50vh; */
    box-sizing: border-box;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    font-family: "Inter", "sans-serif";
    /* border: 1px solid rgba(0, 0, 0, 0.17); */
    /* border: 1px solid #202020; */

    /* border-top: 1px solid #f1f1f1; */
    /* background-color: orange; */
}

.steps-view li:not(:first-child) {
    border-top: 1px solid #f1f1f1;
}

/* .content-start-end-cells-wrapper {
  border-top: 1px solid #2b2b2b;
  padding: 16px 0 0 0;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
} */


.step-container {
    display: flex;
    align-items: center;
    /* flex-direction: ; */
    /* align-items: ; */
    /* margin-bottom: 10px; */
    padding: 16px 0px 14px 0;
    /* background-color: orange; */
}

.step-icon {
    width: 20px;
    height: 20px;
    /* width: 18px;
    height: 18px; */
    /* width: 20px;
    height: 100%; */
    /* border: 1px solid rgba(0, 0, 0, 0.17); */
    /* margin-left: 10px; */
    /* margin-right: 14px;
    margin-left: 4px; */
    /* background-color: #f7f7f7; */
    /* padding: 8px; */
    padding: 0 18px 0 0px;
    border-radius: 6px;
    border-radius: 50vh;
    /* box-sizing: border-box; */

    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
}

.step-details {
    display: flex;
    flex-direction: column;
    /* padding: 4px 4px 4px 4px; */
    /* background-color: orange; */
    /* align-items: center; */
    /* padding: 6px 0 6px 6px; */
    /* padding-right: 6px; */
    margin-right: 16px;
}

/* .step-header {
    font-weight: 400;
    font-size: 12px;
    color: #1e1e1e;
    /* padding-bottom: 2px; */
/* height: fit-content;
    font-family: "Inter", "sans-serif";
/* } */

.step-instruction {
    /* flex: 1; */
    /* color: #555; */
    /* padding: 0px 0 4px 0; */
    /* padding-bottom: 2px; */
    /* margin-top: 10px; */
    width: 100%;

    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", "sans-serif";
    height: fit-content;
    color: #202020;
    /* background-color: purple; */
}

.step-distance {
    font-size: 13px;
    color: #7d7d7d;
    font-weight: 400;
    /* font-size: 10px;
    color: #808080;
    font-weight: 600; */
    width: fit-content;
    font-family: "Inter", sans-serif;
    /* padding: 0px 0 6px 0; */
    box-sizing: border-box;
    margin-top: 2px;
    /* background-color: rgb(221, 221, 221); */
    border-radius: 8px;
    /* padding: 4px 10px 4px 10px; */
    /* margin-left: 10px; */
    /* justify-content: center;
    align-content: center; */
    /* text-align: center; */
}









.modal-close-button {
    position: absolute;
    top: 40px;
    right: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    color: white;
    z-index: 2;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.modal-close-button:hover {
    background: rgba(0, 0, 0, 0.6);
}

.modal-close-button svg {
    width: 24px;
    height: 24px;
    margin-top: 0;
}

.modal-counter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    text-align: center;
    color: white;
    font-size: 13px;
    font-weight: 300;
    font-family: "Inter", "sans-serif";
    z-index: 2000;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.modal-image-container {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px 0px; */
    /* background-color: red; */
}

.modal-nav-button {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    color: white;
    z-index: 2;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.modal-nav-button:hover {
    background: rgba(0, 0, 0, 0.6);
}

.modal-nav-button.prev {
    left: 20px;
}

.modal-nav-button.next {
    right: 20px;
}

.modal-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.modal-image {
    width: 100%;    /* Force image to take full width */
    height: 100%;   /* Force image to take full height */
    object-fit: contain;  /* Maintain aspect ratio while filling space */
}

.modal-nav-button svg {
    width: 24px;
    height: 24px;
}

/* .coordinates {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
    bottom: 40px;
    left: 10px;
    padding: 5px 10px;
    margin: 0;
    font-size: 11px;
    line-height: 18px;
    border-radius: 3px;
    display: none;
} */

/* .setup-view {
    position: relative;
    background-color: red;
    width: 100%;
    min-height: 200px;
}

.setup-title {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
} */

.setup-view {
    position: relative;
    background-color: white;
    width: 100%;
    height: fit-content;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.setup-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0 0 20px 0;
}

.setup-instructions {
    margin-bottom: 24px;
}

.setup-instructions p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6a6a6a;
    line-height: 1.5;
    margin: 0;
}

.setup-code-container {
    background-color: #f7f7f7;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    position: relative;
}

.setup-code-snippet {
    font-family: monospace;
    font-size: 13px;
    color: #1e1e1e;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.setup-copy-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: white;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1e1e1e;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.setup-copy-button:hover {
    background-color: #f0f0f0;
}

.setup-buttons-container {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.setup-button {
    flex: 1;
    height: 40px;
    border-radius: 20px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.setup-button.exit {
    background-color: #f7f7f7;
    color: #1e1e1e;
}

.setup-button.exit:hover {
    background-color: #f0f0f0;
}

.setup-button.configure {
    background-color: #1e1e1e;
    color: white;
}

.setup-button.configure:hover {
    background-color: #141414;
}
