main {
  background-color: #008080;
  padding: 25px;
}

.video-player {
  margin: auto;
  padding: 2px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 100%;
}

.video-top-bar {
  width: 100%;
  color: #fff;

  margin-bottom: 2px;
}

.video-details {
  width: 100%;
  padding: 10px;
  border-radius: 5px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.video-title {
  font-size: 1.2em;
  font-weight: bold;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* USER */

/* USER */

/* USER */

.user-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.video-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#delete_button {
  cursor: pointer;
  padding: 5px 10px;
}
