.auswahlrad-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auswahlrad-label {
    font-size: 13px;
    font-weight: 700;
    color: #4f6470;
}

.auswahlrad-vorlagen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.auswahlrad-vorlage-btn {
    min-height: 38px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    background: #ffffff;
    color: #3f5561;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.auswahlrad-vorlage-btn.aktiv {
    background: #dce4e8;
    border-color: #9fb6a3;
    color: #355346;
}

#auswahlrad-eintraege {
    min-height: 130px;
    padding: 10px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    color: #263238;
    background: #ffffff;
}

.auswahlrad-add-btn-inaktiv,
.auswahlrad-add-btn {
    min-height: 42px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
}

.auswahlrad-add-btn-inaktiv {
    background: #d9d9d9;
    color: #8a8a8a;
    cursor: not-allowed;
}

.auswahlrad-add-btn {
    background: #8ead8f;
    color: #ffffff;
    cursor: pointer;
}

.auswahlrad-widget {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
    font-size: 26px;
}

.auswahlrad-rad {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 0.18em solid #ffffff;
    background: conic-gradient(#f28b82 0deg 45deg,
            #fbbc04 45deg 90deg,
            #fff475 90deg 135deg,
            #ccff90 135deg 180deg,
            #a7ffeb 180deg 225deg,
            #cbf0f8 225deg 270deg,
            #aecbfa 270deg 315deg,
            #d7aefb 315deg 360deg);
    box-shadow: 0 0.12em 0.35em rgba(0, 0, 0, 0.22);
    position: relative;
}

.auswahlrad-mitte {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ffffff;
    color: #263238;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.42em;
    font-weight: 800;
    box-shadow: 0 0.08em 0.2em rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
}

.auswahlrad-ergebnis {
    width: 100%;
    min-height: 1.5em;
    padding: 0.2em 0.35em;
    border-radius: 0.3em;
    background: #ffffff;
    color: #263238;
    font-size: 0.55em;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 0.08em 0.2em rgba(0, 0, 0, 0.14);
}

.auswahlrad-segment-text {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5.8em;
    margin-left: -2.9em;
    margin-top: -0.55em;
    color: #263238;
    font-size: 0.48em;
    font-weight: 900;
    text-align: center;
    line-height: 1.05;
    transform-origin: center center;
    pointer-events: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 0.06em 0.08em rgba(255, 255, 255, 0.85);
}