﻿html, body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f0d8a8;
    background: #f0d8a8;
    color: black;
    direction: rtl;
    font-weight: bold;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}


.page {
    display: flex;
    flex-direction: column;
    background-color: #f0d8a8;
    background: #f0d8a8;
    color: black;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}


.main-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: auto;
    overflow: visible;
}

.content {
    flex-grow: 1;
    min-height: 0;
    overflow-y: auto;
    box-sizing: border-box;
}

.ad-details-page {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: #f0d8a8;
    direction: rtl;
    font-weight: bold;
}

.carousel-bullets {
    max-width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.searchbar-row {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    align-items: center;
}

.top-row {
    position: fixed;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    height: 65px;
    top: 5px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 50;
    padding: 0 10px;
    transition: height 0.4s ease, backdrop-filter 2s ease, background-color 2s ease;
}

    .top-row.shrinked {
        height: 40px;
        top: 4px;
        backdrop-filter: blur(0px);
        background-color: rgba(0, 0, 0, 0.05);
    }

.publishing-status {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 55px;
    max-width: 90%;
    background-color: rgba(0,0,0,0.05);
    padding: 4px 8px;
    border-radius: 0px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.tiny-progress {
    width: 100%;
    margin-bottom: 2px;
}


.search-bar {
    flex: 1;
    max-width: 400px;
    padding: 8px;
    font-size: 1rem;
    border-radius: 2px;
    border: 1px solid #ccc;
}

.icon-button {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}


.search-filters {
    z-index: 10;
}


.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #f0d7aa;
    color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ccc;
    z-index: 10;
}

    .bottom-bar button {
        background: none;
        border: none;
        font-size: 16px;
        padding: 10px;
        cursor: pointer;
    }

.offcanvas-topmost {
    z-index: 1055;
    position: fixed;
}

/*BOOST*/

.boosted-card {
    border: 2px solid gold;
    box-shadow: 0 0 10px gold;
}

.no-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.1);
    z-index: 39;
}
