/* Push Message Container */
#push-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 40px; /* Adjust if needed */
    background-color: rgba(255, 165, 0, 0.8); /* Transparent orange background */
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: height 1s ease-in-out; /* Smooth transition for height change */
}

/* Push Message Text */
#push-message {
    position: relative;
    white-space: nowrap;
    color: #fff;
    font-size: 18px;
    line-height: 40px; /* Matches container height */
    animation: scroll-left 10s linear infinite;
}

/* Scrolling Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Ensure Main Content is Visible Below Push Message */
#main-content {
    margin-top: 40px; /* Adjust this if your push-container height changes */
}
