body {
  font-family: Arial, sans-serif;
  background-color: lightblue;

  /*
  display: flex;  
   justify-content: center;
  align-items: flex-start;    
  padding: 20px;    */
}

#videoList {
  width: 315px;
  height: 150px; /* Adjust height as needed */
  overflow-y: auto; /* This makes the div scrollable */
  margin-right: 20px;
  border: 2px solid #0f0f0f;
  padding: 2px; /* change this to lower number??? */
}

#videoList ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#videoList li {
  cursor: pointer;
  color: blue;
  border: 2px solid #0f0f0f;
  padding-left: 3px; /* change to padding left????? */
  margin-bottom: 2px;
}

#videoList li:hover {
  text-decoration: underline;
}

#videoPlayer {
  width: 315px;
  height: 560px;
}

/* Alternating background colors for list items */
#videoList li:nth-child(odd) {
  background-color: #f9f9f9; /* Light color for odd items */
}

#videoList li:nth-child(even) {
  background-color: #e9e9e9; /* Slightly darker color for even items */
}

/* Style the scrollbar in #videoList */
#videoList::-webkit-scrollbar {
  width: 10px; /* Adjust the width of the scrollbar */
}

#videoList::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the scrollbar track */
}

#videoList::-webkit-scrollbar-thumb {
  background: #060606; /* Color of the scrollbar handle */
  border-radius: 10px; /* Rounded corners for the handle */
}

#videoList::-webkit-scrollbar-thumb:hover {
  background: #555; /* Color of the scrollbar handle on hover */
}

.max-img-size {
  max-width: 500px; /* Set your desired maximum width */
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100%;
  overflow: auto;
  justify-content: center;
  align-items: center;
}

/* Modal Content/Box */
.modal-content {
  background-color: #e9e4e4;
  margin: 5% auto;
  /* 15% from the top and centered */
  padding: 10px;
  border: 2px solid #095c19;

  border-radius: 0.3rem;
  /* width: 95%;
  Could be more or less, depending on screen size */
}

/* screen width higher than 750px */
@media screen and (min-width: 950px) {
  .modal-content {
    background-color: #e9e4e4;
    /* 15% from the top and centered */
    padding: 20px;

    /* width: 50%;
    
    Could be more or less, depending on screen size */
  }
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
