.tag {
    border-radius: 25px;
    padding: 10px 10px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.2s ease;
    color: white;
    font-weight: 600;
}

.tag:hover {
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.35);
}

.tag.color {
    background: var(--tag-background-color);
}