#zeroevent-shield-badge {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99999999 !important;
    background: #f5f0eb !important;
    color: #1f1a14 !important;
    padding: 12px 18px !important;
    border-radius: 14px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    box-shadow:
        7px 7px 18px rgba(180, 160, 135, 0.55),
        -7px -7px 18px rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(180, 160, 130, 0.45) !important;
    border-left: 3px solid #f56a00 !important;
    min-width: 230px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    transition: opacity 0.8s ease, transform 0.8s ease !important;
}

#zeroevent-shield-badge.ze-fade-out {
    opacity: 0 !important;
    transform: translateY(25px) !important;
    pointer-events: none !important;
}

.ze-badge-container {
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    width: 100% !important;
}

.ze-favicon {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

.ze-badge-content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.ze-status-row {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 2px !important;
}

/* Enterprise LED */
.ze-led {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: #4CAF50 !important;
    box-shadow: 0 0 7px #4CAF50 !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.ze-status-text {
    font-size: 9px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    color: #8a7a6a !important;
}

.ze-brand {
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px !important;
    color: #1f1a14 !important;
    line-height: 1.2 !important;
}

.ze-brand span {
    color: #f56a00 !important;
}

/* LED States */
.ze-led-green  {
    background: #3fb950 !important;
    box-shadow: 0 0 8px rgba(63, 185, 80, 0.7) !important;
}
.ze-led-yellow {
    background: #f0a500 !important;
    box-shadow: 0 0 10px rgba(240, 165, 0, 0.7) !important;
    animation: ze-blink 1s infinite !important;
}
.ze-led-red {
    background: #e53e3e !important;
    box-shadow: 0 0 12px rgba(229, 62, 62, 0.7) !important;
    animation: ze-blink 0.5s infinite !important;
}

@keyframes ze-blink {
    0%   { opacity: 1; }
    50%  { opacity: 0.25; }
    100% { opacity: 1; }
}
