body {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}

.navbar {
    min-height: 5rem;
    background-color: white;
}
.fa-compass {
    color: #fe424d;
    font-size: 2rem;
}

.nav-link {
    color: #222222 !important;
}

.f-info-links a {
    text-decoration: none;
    color: #222222;
}

.f-info-links a:hover {
    text-decoration: underline;
}

.f-info-links, .f-info-socials {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.f-info-socials i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.f-info {
    text-align: center;
    height: 8rem;
    background-color: #ebebeb;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: space-evenly;
}

.f-info-brand {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.listings-card {
    border: none !important;
    margin-bottom: 2rem;

}

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

.card-body {
    padding: 0;
}

.card-text {
    font-weight: 400;
}

.listing-link {
    text-decoration: none;
}

/* Card Effect */

.card-img-overlay {
    opacity: 0;
}

.card-img-overlay:hover {
    opacity: 0.2;
    background-color: white;
}

/* New Listing Page */
.add-btn {
    background-color: #fe424d !important;
}

/* Edit Page */
.edit-btn {
    background-color: #fe424d !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Show Page */
.show-img {
    height: 30vh;
}

.btns {
    display: flex;

}
.show-card {
    padding-left: 0;
    padding-right: 0;
}

/* Navbar Stylings */

.search-btn {
    background-color: #fe424d;
    color: #fff;
    border-radius: 25px;
    padding: 0 1rem 0 1rem;
  }
  .search-btn:hover {
    background-color: #fe424d;
    color: #fff;
  }
  .search-btn i {
    display: inline;
    margin-right: .5rem;
  }
  .search-inp {
    border-radius: 25px;
    padding: 0.5rem 3rem .5rem 3rem;
  }

/* Indes.ejs styling */

    #filters {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .filter {
        text-align: center;
        margin-right: 2rem;
        margin-top: 2rem;
        opacity: .7;
    }
    
    .filter p {
        font-size: .8rem;
    }

    .filter:hover {
        opacity: 1;
        cursor: pointer;
    }
    .tax-info {
        display: none;
    }

    .tax-toggle {
        border: 1px solid black;
        border-radius: 1rem;
        height: 3.25rem;
        padding: 1rem;
        margin-left: 2rem;
        display: flex;
        align-items: center;
    }