#dvp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

#dvp-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

#dvp-video {
    width: 100%;
    height: 100%;
}

#dvp-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: none; /* Fjernet baggrundsfarve */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#dvp-play-pause {
    border: none;
    color: white;
    background: none;
    cursor: pointer;
  border-radius: 4px;
    margin-right: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* Tilføjet for bedre synlighed */
}

#dvp-volume {
    width: 6%;
    margin-right: 1px;
    margin-bottom: 1px;
}
#dvp-volume.hidden {
    display: none;
}


#dvp-mute,
#dvp-fullscreen {
    border: none;
    color: white;
    background: none;
    cursor: pointer;
    margin-right: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* Tilføjet for bedre synlighed */
}

#dvp-progress-bar {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.3);
    height: 5px;
    position: relative;
  margin-bottom: -6%;
   margin-left: -10%;
  margin-right: 2%;
    cursor: pointer;
}
#dvp-progress-bar.hidden {
    display: none;
}
#dvp-progress {
    width: 0%;
    height: 100%;
    background-color: #007bff; /* blå */
    position: absolute;
    top: 0;
    left: 0;
}