body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.encoder {
    width: 600px;
    height: 600px;
    background-color: #333;
    border-radius: 50%;
    position: relative;
}

.knob {
    width: 450px;
    height: 450px;
    background-color: #007bff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    touch-action: none; /* Отключаем стандартное поведение для сенсорных событий */
}

.label {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #fff;
}
