.mobile-sticky-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.mobile-sticky-banner-container {
    display: flex;
    width: 100%;
    gap: 0;
}

.mobile-sticky-btn {
    flex: 1;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    display: block;
    border: none;
    white-space: nowrap;
}

.mobile-sticky-btn:hover,
.mobile-sticky-btn:focus,
.mobile-sticky-btn:active {
    text-decoration: none;
    outline: none;
}

/* Show only on mobile screens */
@media (max-width: 767px) {
    .mobile-sticky-banner {
        display: block;
    }
    
    /* Add padding to content area to prevent content from being hidden behind sticky banner */
    .content {
        padding-bottom: 70px;
    }
}

/* Hide on tablet and desktop */
@media (min-width: 768px) {
    .mobile-sticky-banner {
        display: none !important;
    }
}

