/* Add these styles to your theme's CSS */
#fav-link {
    width: auto;
    display: flex;
    flex-direction: row;
    padding: 0px 12px 0px 0px;
}

#fav-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#fav-link .far, .header-aux-menu-container .far {
    font-size: 22px;
    transition: color 0.3s ease;
}

#favCount {
    position: absolute;
    top: 6px;
    right: -8px;
    background-color: #000099;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.825rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    z-index: 5;
}

#fav-link.has-favorites #favCount {
    transform: scale(1);
}

#fav-link:not(.has-favorites) #favCount {
    transform: scale(0);
}

.tooltip .tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    margin-top: 10rem; 
    color: #393939;
    text-align: center;
    background-color: #EFEFEF;
    border: solid 1px #33333350;
    border-radius: .25rem;
    font-family: Montserrat,sans-serif;
}

.tooltip .tooltip-arrow {
    border-top-color: #000099;
}

.divider {
    height: 40px;
    width: 1px;
    background: #ffffff80;
    margin: auto;
}

.d-flex {
    display: flex;
    gap: 12px;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.search-wrapper {
    flex-grow: 1;
}


