/* security.css – Estilos para el sistema de seguridad */

/* Advertencia de mute */
.mute-warning {
    background: rgba(255, 100, 0, 0.2);
    border-left: 4px solid orange;
    padding: 10px;
    margin: 10px 0;
    font-family: var(--font-mono);
    color: orange;
}

/* Pantalla de bloqueo por IP */
.ip-blocked {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--accent-color);
    font-family: var(--font-mono);
    text-align: center;
    padding: 20px;
}

.ip-blocked h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.ip-blocked .salvoconducto-input {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}