#snb-notification-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 37px;
    background-color:#111; /* Change this color as needed */
    color: #ffffff;
    z-index: 99999;
    display: none; /* Hidden by default to prevent flashing */
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.snb-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
    padding: 0 15px;
    height: 100%;
    box-sizing: border-box;
}

.snb-text {
    font-size: 14px;
    line-height: 37px;
    text-align: center;
    margin: 0;
    padding: 0;
}

@media (max-width:960px) {
    .snb-text {
        font-size: 12px;
text-align: left;
line-height: 13px;
padding-right: 12px;
    }
}

#snb-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    padding: 0;
    line-height: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.2s;
    top: -2px;
}

#snb-close:hover {
    opacity: 1;
}

/* Push body down so it doesn't overlap */
body.has-snb-bar {
    padding-top: 37px !important;
}