#zoom-control {
  position: absolute;
  top: 0px; /* Adjust as needed */
  left: 18%;
  width: 100%;
  text-align: center; /* Center the zoom control horizontally */
  z-index: 1001; /* Set a higher z-index to ensure it appears above the video player */
}

#content {
  position: relative;
}

#zoomable-element {
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

#video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto 20px; /* Add 50px top margin */
    text-align: center; /* Center video horizontally */
    z-index: 1000; /* Set a lower z-index to ensure it appears below the zoom control */
}

.video-container.fullscreen {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center; /* Center video horizontally */
    align-items: center; /* Center video vertically */
}

#video {
    width: 100%;
    height: auto;
}

#controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.button {
    padding: 8px 16px;
    border: none;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

/* CSS for the "Back 10s" button */
#back-btn {
    margin-right: 10px; /* Adjust as needed */
}


#back-btn:hover {
    background-color: #0056b3;
}


.button:hover {
    background-color: #0056b3;
}

#popup {
    position: fixed;
    top: 60%; /* Adjust the vertical position */
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: none;
	opacity: 1;
    transition: opacity 1s ease-in-out; /* Add transition for opacity */
}

#popup p {
    font-size: 20px;
    margin: 0;
}

#timer {
    font-size: 14px;
}
