
/* Force top logo bar to appear above header */
.top-logo-bar {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    z-index: 1000;
}

.top-logo-bar a {
    margin: 0 15px;
    display: inline-block;
}

.top-logo-bar img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.top-logo-bar img:hover {
    transform: scale(1.05);
}
