/* mclaw | Servicebase */
.servicebase-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.servicebase-status-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    position: relative;
}

.servicebase-is-open .servicebase-status-dot {
    background: #18A652;
    animation: servicebase-pulse-green 1.5s infinite;
}

.servicebase-is-closed .servicebase-status-dot {
    background: #d1473a;
    animation: servicebase-pulse-red 1.5s infinite;
}

.servicebase-is-pause .servicebase-status-dot {
    background: #f59c00;
    animation: servicebase-pulse-orange 1.5s infinite;
}

.servicebase-countdown {
    margin-top: 6px;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 13px;
    color: #15133f;
    display: flex;
    gap: 8px;
    align-items: center;
}

.servicebase-countdown-label {
    opacity: 0.8;
}

.servicebase-countdown-time {
    font-weight: 700;
}

@keyframes servicebase-pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(24,166,82,0.7); }
    70% { box-shadow: 0 0 0 8px rgba(24,166,82,0); }
    100% { box-shadow: 0 0 0 0 rgba(24,166,82,0); }
}

@keyframes servicebase-pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(209,71,58,0.7); }
    70% { box-shadow: 0 0 0 8px rgba(209,71,58,0); }
    100% { box-shadow: 0 0 0 0 rgba(209,71,58,0); }
}

@keyframes servicebase-pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(245,156,0,0.7); }
    70% { box-shadow: 0 0 0 8px rgba(245,156,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(245,156,0,0); }
}
