/**
 * RelaxUY Tweaks - Estilos CSS
 */

/* Badge de usuario baneado */
.tweaks-banned-badge {
    display: block;
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    margin: 6px auto 0 auto;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    text-align: center;
    width: fit-content;
}

/* Variante para perfil de usuario */
.profile-banned-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-top: 8px;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animación sutil para llamar la atención */
@keyframes banned-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.tweaks-banned-badge:hover,
.profile-banned-badge:hover {
    animation: banned-pulse 1.5s ease-in-out infinite;
}

/* Indicador de moderador - Fixed rojo */
.tweaks-mod-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #e74c3c;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 99999;
}

.tweaks-mod-indicator .mod-icon {
    margin-right: 8px;
}

/* Ajustar body para compensar la barra fixed */
body.has-mod-indicator {
    padding-top: 38px;
}
