.navbar-brand img {
    height: 52px;
    max-width: none;
}

#adminPage .navbar {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Banner animation styles */
.notification-banner {
    background-color: #fcb92c;
    color: white;
    padding: 7px;
    text-align: center;
    font-weight: bold;
    position: relative;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease;
}

.notification-banner.show {
    opacity: 1;
    max-height: 200px;
    padding: 7px;
}

.notification-banner.hide {
    opacity: 0;
    max-height: 0;
    padding: 0;
}

.btn-close {
    background: transparent;
    border: none;
    color: white;
    float: right;
/*    font-size: 1.5rem;*/
    line-height: 1;
    cursor: pointer;
}

.notification-count-badge {
    font-size: .6rem;
    font-weight: 600;
    padding: 3px 5px;
    position: absolute;
    right: 12px;
    top: -11px;
    background-color: red !important;
}