/* assets/css/widget-estado.css */
.aviso-flotante {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100000;
    font-family: 'Inter', sans-serif;
}

.status-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.status-widget:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.95);
}

.status-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
    cursor: pointer;
}

.circle-green {
    background-color: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.circle-red {
    background-color: #ef4444;
    box-shadow: 0 0 8px #ef4444;
}

@keyframes pulse-circle {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.blink-circle {
    animation: pulse-circle 1.2s infinite ease-in-out;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.extra-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.extra-icon:hover {
    transform: scale(1.1);
}

.status-info {
    margin-top: 6px;
    text-align: center;
    font-size: 0.65rem;
    color: #9ca3af;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    font-family: monospace;
}

.hora-actual {
    color: #60a5fa;
    font-weight: 600;
}

.horario-atencion {
    color: #fbbf24;
}

@media (max-width: 768px) {
    .aviso-flotante { bottom: 15px; left: 15px; }
    .status-widget { padding: 6px 12px; gap: 8px; }
    .status-text { font-size: 0.75rem; }
    .status-info { font-size: 0.55rem; padding: 3px 8px; white-space: nowrap; }
    .status-circle { width: 14px; height: 14px; }
    .extra-icon { width: 18px; height: 18px; }
}