#notification-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #222222;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
}

#btn-activar {
    background-color: #007cba; /* Azul nativo de WordPress */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

#btn-activar:hover {
    background-color: #006ba1;
}

#btn-cerrar {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.banner-oculto {
    display: none !important;
}