#farbdesigner-container {
    text-align: center;
    font-family: Arial, sans-serif;
}

#color-wheel {
    cursor: pointer;
    border-radius: 50%;
    margin-bottom: 10px;
}

.sliders label {
    margin: 0 10px;
    display: inline-block;
}

.palette, .codes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
}

.palette div, .codes div {
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    user-select: none;
}

.palette div {
    width: 50px;
    height: 50px;
}

.codes div {
    padding: 5px 10px;
    background-color: #eee;
}

.codes div:hover {
    background-color: #ddd;
}

.preview-box {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.preview-box div {
    width: 40px;
    height: 40px;
    margin: 2px;
    border-radius: 3px;
}

#copy-notice {
    display: none;
    color: green;
    font-weight: bold;
    margin-top: 5px;
}
