.bht-container {
    margin: 20px 0;
}

.bht-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 2px;
    background: #f5f5f5;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    border: 1px solid #e0e0e0;
}

.bht-indicator .bht-timer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34c759;
    flex-shrink: 0;
    animation: bht-pulse 2s infinite;
}

.bht-indicator #bht-status-text {
    font-weight: 600;
    color: #333;
}

.bht-indicator #bht-secondary-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

@keyframes bht-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Widget specific styles */
.bht-widget-container {
    padding: 10px 0;
}

.widget .bht-indicator {
    background: #f9f9f9;
    padding: 10px 12px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bht-indicator {
        padding: 10px 12px;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .bht-indicator #bht-secondary-text {
        flex-basis: 100%;
        margin-left: 18px;
        font-size: 0.8rem;
    }
}
