#cluster-map{
    width: 100%;
    height: 400px;
}

#map{
    width: 100%;
    height: 30vh;
}

/* Bootstrap 5 text input with search icon */
.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.rating{
    font-size: 60px;
}

.rating-container{
    background-color: #2B3035;
    border-radius: 10px;
    padding: 20px;
}

.rating-container div{
    display: flex;
    justify-content: center;
    border-right: 2px #4a5759 solid;
    color: #B2B4B1;
}

.rating-container div:last-child{
    border: none;
}

/* Callout styles  */
.bs-callout {
    margin: 20px 0;
    padding: 15px 30px 15px 15px;
    border-left: 5px solid #eee;
}

.bs-callout-info {
    color: #3A87AD;
}


.bs-callout p:last-child {
    margin-bottom: 0;
}

.bs-callout-info {
    background-color: #f0f7fd;
    border-color: #d0e3f0;
}

.notfound img{
    width: 300px;
}

.notfound h4{
    color: #868DB6;
}

.notfound p{
    color: #868DB6;
}

.navbar-toggler{
    border: none;
}

.navbar-toggler:focus{
    box-shadow: none;
}

@media all and (max-width: 420px){
    .card{
        width: 370px;
    }
    .footer {
        flex-direction: column;
    }
    .auth-image {
        width: 200px;
    }
}

@media all and (max-width: 390px){
    .card{
        width: 350px;
    }
}

@media all and (max-width: 370px){
    .card{
        width: 320px;
    }
}

@media all and (max-width: 340px){
    .card{
        width: 300px;
    }
}

#search-results {
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


