 #mobile-message-banner {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2d6a4c; /* Dark background */
    color: white;
    padding: 15px 20px;
    z-index: 1001; /* Make sure it's on top of everything */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);

     transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

#mobile-message-banner.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(0); /* Animate into view */
}

#mobile-message-banner p {
    margin: 0;
    font-size: 0.9rem;
}

#mobile-message-banner button {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 5px;
}