/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 28 2026 | 07:30:28 */
.color-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	margin-top: -15px;
}

.color-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    background: #fff;
    transition: 0.2s;
}

/* Hover-Effekt */
.color-radio:hover {
    background: #f5f5f5;
}

/* Radiobutton unsichtbar machen */
.color-radio input {
    display: none !important;
}

/* Rahmen anzeigen, wenn ausgewählt */
.color-radio input:checked + .color-box {
    outline: 2px solid #009fe3;
    outline-offset: 2px;
}

/* Farbfeld */
.color-box {
    width: 24px;
    height: 24px;
    border: 1px solid #666;
    border-radius: 4px;
}

/* Text */
.color-label {
    font-size: 14px;
}
