.color-grid {
    display: flex;
    gap: 8px;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.color-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.color-option {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.color-option:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.color-option.selected {
    border-color: #000;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
}

.color-preview {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
}

.color-preview-container {
    min-width: 120px;
    text-align: center;
}

.color-preview-box {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    margin: 0 auto;
}

.color-name {
    font-family: monospace;
    font-size: 0.9em;
    color: #6c757d;
}

.category-badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    min-width: 100px;
    text-align: center;
}

.list-group-item .category-badge {
    margin-right: 1rem;
}

.form-select .category-badge {
    margin: 0;
} 