.category-item {
    display: grid;
    gap: 12px;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
}
.category-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.category-actions {
    display: flex;
    gap: 12px;
}
.color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
    background-color: #ffffff;
    position: relative;
}
.color-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border: none;
    padding: 0;
}

.inline-name-input {
    border: none;
    background: transparent;
    font: inherit;
    padding: 0;
    margin: 0;
    outline: none;
    width: auto;
    color: inherit;
}

.tag-item.editing {
    outline: none;
}
