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

.container{
    flex: 1;
}

/*navbar styles */
.navbar{
    height: 5rem;
    background-color: white;
}

.fa-location-arrow{
    color:#fe424d;
    font-size: 2rem;
}

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

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

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

.f-info{
    height: 8rem;
    background-color: #ebebeb;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: space-evenly;
    text-align: center;
}
.f-info-links, .f-info-socials, .f-info-brand{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.f-info-socials i{
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

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

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

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

.card-text p{
    font-weight: 400 !important;
}

/* for index.js anchor tag */
.listing-link{
    text-decoration: none;
}

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

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

/* button styles for new.ejs */
.add-btn{
    background-color: #fe424d !important;
    border: none !important;
}

/* button styles for edit.ejs */
.edit-btn{
    background-color: #fe424d !important;
    border: none !important;
}

/* show page listing image */
.show-img{
    height: 40vh;
    object-fit: cover;
}

.btns{
    display: flex;
    margin-top: 1rem;
}

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

#map { 
    height: 400px;
    width: 80vh; 
}