/* speaker_busy_ui.css - UI sa single broadcast lock (busy banner + disabled states) */

.busy-banner {
    display: none;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 18px 0;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #f59e0b;
    background: linear-gradient(90deg, rgba(245, 158, 11, .18), rgba(245, 158, 11, .04));
    color: #fcd34d;
    font-size: 14px;
    font-weight: 600;
    animation: busyPulse 1.6s ease-in-out infinite;
}

.busy-banner.show { display: flex; }

.busy-banner.is-live {
    border-color: #00f3ff;
    background: linear-gradient(90deg, rgba(0, 243, 255, .18), rgba(0, 243, 255, .04));
    color: #a5f3fc;
}

.busy-banner .busy-dot {
    width: 11px;
    height: 11px;
    min-width: 11px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.busy-banner .busy-text { flex: 1; line-height: 1.45; }
.busy-banner .busy-text strong { color: #fff; }

/* Countdown: pila na lay nahibilin sa broadcast */
.busy-banner .busy-count {
    display: inline-block;
    margin-left: 4px;
    padding: 1px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    white-space: nowrap;
}

/* Force unlock: mogawas ra kon milapas na sa gidahom nga oras */
.busy-banner .busy-unlock {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid currentColor;
    color: inherit;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.busy-banner .busy-unlock:hover {
    background: currentColor;
    color: #1a1205;
}

@keyframes busyPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .72; }
}

/* Gi-lock: dili na ma-pindot ang play ug live talk samtang naa pay nag-broadcast */
.speaker-locked {
    opacity: .38 !important;
    filter: grayscale(.85);
    pointer-events: none !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* Countdown badge sa Live Talk (3s antes makasulti) */
.talk-countdown {
    display: inline-block;
    min-width: 20px;
    margin-left: 6px;
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .35);
    font-variant-numeric: tabular-nums;
    font-weight: 900;
}

/* Toast para sa "busy" nga mensahe */
.speaker-toast-wrap {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: min(360px, calc(100vw - 36px));
}

.speaker-toast {
    padding: 13px 16px;
    border-radius: 11px;
    border: 1px solid #f59e0b;
    background: #1c1407;
    color: #fcd34d;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.45;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .55);
    animation: toastIn .22s ease-out;
}

.speaker-toast strong { color: #fff; }
.speaker-toast.is-error { border-color: #f85149; background: #1d0d0c; color: #ffb4ae; }

@keyframes toastIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .busy-banner { font-size: 13px; padding: 12px 14px; }
    .speaker-toast-wrap { right: 12px; left: 12px; bottom: 12px; max-width: none; }
}
