.dynamic-office-hours {
    display: none;
}

/* Styles for mobile devices */
@media only screen and (max-width: 767px) {
    .office-on #sticky-header {
        min-height: 70px!important;
    }

    .office-on  #footer {
        padding-bottom: 50px;
    }
    .sticky-doh-element  .dynamic-office-hours { 
        display: block;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        position: fixed;
        background: #fff;
        z-index: 999;

    } 

    /* Keep both chat widget and call button visible on mobile - do not hide */
    .doh_enabled #sp-root-container,
    .doh_enabled #sp-chat-widget,
    .doh_enabled #sy-whatshelp-phone {
        display: block !important;
    }

    .dynamic-office-hours  {
        padding: 8px 10px 12px 10px;
    }

    .dynamic-office-hours {
        text-align: center;
    }

    .dynamic-office-hours .dynamic-office-hours-et {
        display: flex;
        justify-content: center;
        gap: 4px;
    }

    .dynamic-office-hours a {
        border-radius: 4px;
        border: 1.8px solid #4D6177;
        background: #4D6177;
        padding: 8px 0;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        /* Enable touch events on mobile */
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        /* Prevent text selection on touch */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        /* Ensure links are clickable */
        pointer-events: auto;
    }
    
    /* Ensure cta-chat button is above other elements */
    .dynamic-office-hours .cta-chat {
        position: relative;
        z-index: 10001;
    }

    .dynamic-office-hours a span,  .dynamic-office-hours a {
        color: #fff;
        font-family: Lato;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
    }

    .people-booked-text {
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        margin-top: 8px;
        display: block;
    }
}