#stickyBanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #8e918f; /* Sticky Banner background */
    color: black;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease-out;
}

/* Close Button (X) */
.close-btn {
    position: absolute;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
}

.close-btn:hover {
    color: white;
}