/* Main Timer Box (Inner) */
#mpm-cart-timer {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
}

/* Time Value Boxes (00 m : 00 s) */
.mpm-time-val {
    background-color: rgba(0, 0, 0, 0.1);
    /* Slight darker box */
    padding: 4px 8px;
    border-radius: 4px;
    margin: 0 4px;
    font-family: monospace;
    /* Monospace for numbers */
    font-size: 16px;
}

/* Fixed Top Bar (Container) */
#mpm-fixed-timer-bar {
    background-color: #feeebc;
    /* Pale Yellow (Reference Image match) */
    color: #000000;
    /* Black Text */
    padding: 12px 15px;
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e6d6a5;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.5px;
    /* text-transform: uppercase; user text wasn't uppercase in my logic, keeping standard */
}

/* WP Admin Bar Compatibility */
body.admin-bar #mpm-fixed-timer-bar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar #mpm-fixed-timer-bar {
        top: 46px;
    }
}