.option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.option-inline {
    background: #3a3a3a;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.option-inline:hover {
    background: #4a4a4a;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #222;
}