body {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.menu {
    background: #151515;
    color: white;
    padding: 20px;
    border-radius: 8px;
    width: 330px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    text-align: center;
}

.menu-title {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}

hr {
    border: none;
    height: 2px;
    background: #9400D3;
    margin-bottom: 10px;
}

.tabs {
    display: flex;
    justify-content: space-between;
}

.tab {
    flex: 1;
    background: #222;
    padding: 8px;
    border-radius: 5px;
    color: white;
    border: none;
    cursor: pointer;
    margin: 0 5px;
}

.tab.active {
    background: #9400D3;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 10px 0;
}

.checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.checkbox input:checked + .checkmark {
    background: #9400D3;
    color: white;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.slider {
    width: 90%;
    -webkit-appearance: none;
    height: 6px;
    background: #333;
    border-radius: 5px;
    outline: none;
    transition: 0.2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #9400D3;
    border-radius: 50%;
    cursor: pointer;
}

.combobox {
    width: 100%;
    padding: 8px;
    background: #222;
    color: white;
    border: 2px solid #9400D3;
    border-radius: 5px;
    margin: 10px 0;
    cursor: pointer;
}

.radio-group {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio input {
    display: none;
}

.radio-mark {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #333;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio input:checked + .radio-mark {
    background: #9400D3;
}

.separator {
    height: 1px;
    background: #9400D3;
    margin: 10px 0;
}
