@font-face {
	font-display: swap;
	font-family: 'Gilroy';
	font-style: normal;
	font-weight: 600;
	src: url('/Gilroy-SemiBold.woff2');
}

body {
  font-family: Gilroy;
  margin: 0;
  padding: 0;
  background-color: black;
  overflow: auto;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: black;
}

h1 {
  text-align: center;
  color: white;
}

#video-player {
  display: none;
  width: 100%;
  margin-top: 10px;
}

#dashboard-button {
  display: block;
  margin: 0 auto;
}

#password-container {
  text-align: center;
  margin-bottom: 20px;
}

#password-container input, button, label {
  display: block;
  margin: 10px auto;
  max-width: 100%;
}

#submit-password {
  color: white;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield; /* Standard property for compatibility */
}

.video-list {
  text-align: center; 
}

.list-videos {
  max-height: 300px;
  overflow-y: auto;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

.video-buttons {
  width: 100%;
  display: inline-flex; 
  flex-direction: column; 
  align-items: center;
}

.whitening {
  color: white;
}

.video-list label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.video-list select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.video-list-item {
  display: inline-block;
  width: 100px;
  margin: 10px;
}

@media (max-width: 768px) {
  .video-list-item {
    width: 80px;
  }
}