/* NMB Digital Clock v2.0 – nmb-clock.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.nmb-digital-clock {
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.06em;
    background: transparent;
    padding: 0;
    border: none;
    white-space: nowrap;
    line-height: 1.5;
    user-select: none;
    /* color, font-size, font-weight are injected dynamically from plugin settings */
}

/* Blinking colon separator */
.nmb-digital-clock .nmb-sep {
    animation: nmb-blink 1s step-end infinite;
    display: inline-block;
}

@keyframes nmb-blink {
    0%,  100% { opacity: 1; }
    50%        { opacity: 0.35; }
}
