/* tagManager.css */

.tag-box {
    display: inline-block;
    margin: 0 6px 6px 0;
    padding: 3px 10px;
    background: rgba(114, 9, 183, 0.1);
    border: 1px solid rgba(114, 9, 183, 0.25);
    border-radius: 4px;
    color: #9b5de5;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    transition: border-color 0.2s ease;
}

.tag-box:hover {
    border-color: rgba(114, 9, 183, 0.5);
}

.tag-box .tag-remove {
    margin-left: 6px;
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
}

.tag-box .tag-remove:hover {
    color: #ff3860;
}
