/**
 * 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;
}
