/* Estilo para a lista de vídeos */
#video-list {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-item {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.video-item h3 {
  margin: 0;
  font-size: 18px;
  text-align: center;
}

.video-item p {
  margin: 0;
}

.video-item button {
  padding: 5px 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

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

video {
  width: 100% !important;
  height: 320px !important;
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 591px) {
  video {
    width: 100% !important;
    height: 100% !important;
    padding: 0;
  }
}
