.audio-controls {
    margin-top: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    box-sizing: border-box;
    font-family: "IBM Plex Mono", monospace;
    color: #00ff00;
    font-size: 14px;
}

.audio-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #00ff00;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 18px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.4s;
    border-radius: 18px;
    border: 1px solid #00ff00;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00ff00;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: rgba(0, 255, 0, 0.2);
}

input:checked + .toggle-slider:before {
    transform: translateX(100%) translateY(-50%);
}

.volume-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #00ff00;
}

.volume-slider {
    flex-grow: 1;
    appearance: none;
    -webkit-appearance: none;
    height: 4px;
    background: #333;
    border-radius: 2px;
    outline: none;
    border: 1px solid #00ff00;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #00ff00;
}

.volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #00ff00;
}
