body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
}

#videoPlayer {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#settings-panel {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
}

body:hover #settings-panel {
    opacity: 1;
    visibility: visible;
}

.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.settings-row:last-child {
    margin-bottom: 0;
}

.settings-row label {
    margin-right: 10px;
}

#shuffle-toggle, #quality-select, #skip-button {
    background: #333;
    color: white;
    border: 1px solid #555;
    border-radius: 3px;
}

#skip-button {
    width: 100%;
    padding: 5px;
    cursor: pointer;
}