/* Set base font and layout for body */
body {
    font-family: "Plus Jakarata Sans", sans-serif !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar styles */
.host-listing {
    font-size: small !important;
    padding: 10px;
    text-decoration: none !important;
}

@media (max-width: 660px) {
    .host-listing {
        background-color: #fff !important;
        color: #313131 !important;
        border: none !important;
        padding: 0px 0px !important;
        margin-top: 8px;
    }
}

.navbar {
    background-color: #fff;
}

@media (min-width: 820px) {
    .navbar {
        font-weight: bold !important;
    }
}

/* Compass icon color and size */
.fa-compass {
    font-size: 1.5rem;
    color: #fe4244;
    height: 2rem;
}

/* Compass icon hover effect */
.fa-compass:hover {
    opacity: 0.7;
}

/* Navbar link color */
.nav-link {
    color: black !important;
}

/* Navbar link hover effect */
.nav-link:hover {
    opacity: 0.7;
    color: #3682ec;
}

/* Search input field styles */
.search-input {
    height: 2.5rem !important;
}

@media (max-width: 800px) {
    .search-input {
        width: 70% !important;
    }

}

/*Footer*/
.container {
    margin-top: 5px;
    flex: 1; /* Container flex to keep footer at bottom */
}

/* Tax info styles */
.tax-info {
    display: none;
}

.tax-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background-color: #fe4244;
    border-radius: 1.5rem;
    height: 2.5rem;
    padding: 1rem;
    margin-right: 1rem;
    width: fit-content;
}

.tax-toggle:hover,
.form-check-label:hover,
.form-check-input:hover {
    cursor: pointer;
}

/* Show page image height */
.show-img {
    height: 40vh;
}

/* Show page button layout */
.btns {
    display: flex;
}

/* Show page card padding */
.show-card {
    padding-left: 0;
    padding-right: 0;
}

/* New page button color */
.btn-color {
    background-color: #fe4244 !important;
    border: none !important;
}

/* Listing card styles */
.listing-card {
    border: none !important;
    margin-bottom: 2rem !important;
}

/* Card image styles */
.card-img-top {
    border-radius: 1rem !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* Card body padding */
.card-body {
    padding: 0 !important;
}

/* Card text font weight */
.card-text p {
    font-weight: 400;
}

/* Remove underline from listing links */
.listing-link {
    text-decoration: none;
}

/* Card image overlay effect */
.card-img-overlay {
    opacity: 0;
}

/* Card image overlay hover effect */
.card-img-overlay:hover {
    opacity: 0.2;
    background: #fff;
}