<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.blur-bg {
    position: relative;
    background: url(images/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-image: url('../../static/img/livingroom-blurred.jpeg');
    height: 100vh;
}

.blur-bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*backdrop-filter: blur(6px);*/
    /* adjust blur as needed */
    z-index: -1;
}

.navbar {
    margin-left: auto;
    /* Push the logo to the right */
}

.navbar-brand {
    position: relative;
    /* Allow adjustments within the navbar */
    margin: 0 auto;
    /* Center the logo initially */
}

.navbar-brand.move-right {
    margin-right: 0px;
    /* This will push the logo to the far right */
}

.container-fluid {
    display: flex;
    /* Enable flexbox */
    justify-content: space-between;
    /* Space between logo and any other elements */
}

.highlight {
    border: 1px solid red;
}

.search-bar {
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
}

.search-bar input {
    border: none;
    outline: none;
    box-shadow: none;
    flex-grow: 1;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.search-bar button {
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.price-box {
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Add a dividing line between the search results and the shopping cart */
.border-end {
    border-right: 3px solid #ddd;
    /* Adjust the color and width as needed */
}

.shopping-cart {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 160px);
    /* Full height of the viewport */
    border-left: 1px solid #ddd;
}

.shopping-list-content {
    overflow-y: auto;
    /* Enable scrolling for shopping list content */
    flex-grow: 1;
    /* Allow the shopping list to take up remaining space */
    padding-right: 10px;
}

.total-box {
    padding: 10px;
    border-top: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
    /* Include padding and border in the element's total width */
    position: relative;
    /* Remains fixed within the parent (shopping-cart) at the bottom */
    flex-shrink: 0;
    /* Prevent the box from shrinking */
}

#searchResults {
    max-height: calc(100vh - 160px);
    /* Adjust based on modal header and input bar height */
    overflow-y: auto;
    /* Enable scrolling for the search results */
}

.card {
    border: none !important;
}

#card-errors {
    color: #fa755a;
}

.card-deposit {
    border: 1px solid black;
}

#card-errors-deposit {
    color: #fa755a;
}

.popover-img {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover !important;
}

.selectable-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.selectable-option:hover {
    background-color: gray !important;
}

.option-box.selectable-option.active {
    border: 2px solid black !important;
    background-color: #1c1c3a !important;
    color: white !important;
}

.option-box.selectable-option.active h5,
.option-box.selectable-option.active p {
    color: white;
}</pre></body></html>