[data-theme="dark"] {
    --player-button-color: rgb(255, 255, 255);
    --player-hover-button-color: #05bbd9;
}

[data-theme="light"] {
    --player-button-color: rgb(129, 129, 129);
    --player-hover-button-color: #05bbd9;
}

video {
    width: 100%;
    border-radius: 10px;
}

.progress-container {
    width: 90%;
    height: 4px;
    direction: ltr;
    margin: 40px 20px;
    border-radius: 5px;
}

.progress {
    width: 0%;
    height: 100%;
    border-radius: 5px;
    transition: width 0.1s linear;
}

.duration-wrapper {
    top: -25px;
    display: flex;
    position: relative;
    justify-content: space-between;
}

.player-controls {
    left: 8px;
    top: -15px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-evenly;
}

.volume {
    margin-right: 0;
}

.range {
    width: 63px;
    direction: ltr;
    margin-right: 24px;
}

.player-button {
    top: 3px;
    cursor: pointer;
    font-size: 30px;
    font-size: 40px;
    user-select: none;
    margin-right: 30px;
    position: relative;
    color: var(--player-button-color);
}

.player-button:hover{
    color: var(--player-hover-button-color);
    filter: brightness(80%);
}

#my_body {
    text-align: center;
}

#current-time,
#duration {
    margin-top: -15px;
}