
 
/* Estilo base */
.tag-lx {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px; /* deixa mais elegante e arredondado */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: #fff;
}

/* Efeitos ao passar o mouse */
.tag-lx-hover:hover {
    opacity: 0.9;
    transform: scale(1.05);
    cursor: default;
}

/* Paleta que combina com o LaudosX (azul, verde, cinza, vermelho e roxo) */
.tag-lx-blue {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 2px 6px rgba(0,123,255,0.3);
}

.tag-lx-green {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    box-shadow: 0 2px 6px rgba(40,167,69,0.3);
}

.tag-lx-grey {
    background: linear-gradient(135deg, #6c757d, #495057);
    box-shadow: 0 2px 6px rgba(108,117,125,0.3);
}

.tag-lx-red {
    background: linear-gradient(135deg, #dc3545, #a71d2a);
    box-shadow: 0 2px 6px rgba(220,53,69,0.3);
}

.tag-lx-purple {
    background: linear-gradient(135deg, #6f42c1, #4e2a91);
    box-shadow: 0 2px 6px rgba(111,66,193,0.3);
}

.tag-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
}

.tag-icon i {
    font-size: 14px;
    opacity: 0.8;
}

/* Cores */
.tag-icon-blue { background: #007bff; }
.tag-icon-green { background: #28a745; }
.tag-icon-red { background: #dc3545; }
.tag-icon-grey { background: #6c757d; }
.tag-icon-purple { background: #6f42c1; }


.tag-outline {
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    border: 2px solid;
    background: #fff;
    transition: all 0.3s ease;
}

.tag-outline-blue { border-color: #007bff; color: #007bff; }
.tag-outline-green { border-color: #28a745; color: #28a745; }
.tag-outline-grey { border-color: #6c757d; color: #6c757d; }
.tag-outline-red { border-color: #dc3545; color: #dc3545; }
.tag-outline-purple { border-color: #6f42c1; color: #6f42c1; }

.tag-outline-hover:hover {
    background: currentColor;
    color: #fff;
}

.tag-glow {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 12px;
    color: #fff;
    background: #007bff;
    box-shadow: 0 0 6px rgba(0,123,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.tag-glow-hover:hover {
    box-shadow: 0 0 12px rgba(0,123,255,0.9);
    transform: scale(1.05);
}

.tag-box {
    display: inline-block;
    padding: 4px 10px;
    margin: 3px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #333;
}

.tag-box-blue { border-color: #007bff; color: #007bff; }
.tag-box-green { border-color: #28a745; color: #28a745; }
.tag-box-red { border-color: #dc3545; color: #dc3545; }
.tag-box-purple { border-color: #6f42c1; color: #6f42c1; }


/* Tamanhos */
.tag-lx-xs { padding:3px 8px; font-size:10px; }
.tag-lx-lg { padding:8px 14px; font-size:13px; }