/* Custom styles for etiquetas.html to prevent CSP inline-style violations */

.tag-preview-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 40px;
    background: rgba(26, 115, 232, 0.05);
    border-radius: 20px;
}

.tag-preview-icon {
    font-size: 4rem;
    color: #1a73e8;
}

.tag-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.preview-tag {
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.preview-tag i {
    font-size: 0.6rem;
    margin-right: 6px;
    vertical-align: middle;
}

.preview-tag--blue {
    background: #e3f2fd;
    color: #0d47a1;
}

.preview-tag--blue i {
    color: #1e88e5;
}

.preview-tag--green {
    background: #e8f5e9;
    color: #1b5e20;
}

.preview-tag--green i {
    color: #43a047;
}

.preview-tag--orange {
    background: #fff3e0;
    color: #e65100;
}

.preview-tag--orange i {
    color: #fb8c00;
}

.preview-tag--gray {
    background: #fafafa;
    color: #212121;
}

.preview-tag--gray i {
    color: #757575;
}

.preview-tag--purple {
    background: #f3e5f5;
    color: #4a148c;
}

.preview-tag--purple i {
    color: #8e24aa;
}

.tag-preview-caption {
    text-align: center;
    margin-top: 15px;
    color: #5f6368;
}
