.ebram-video-player-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ebram-video-player-form__row {
  display: flex;
  gap: 20px;
}

.ebram-video-player-form__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 50%;
}

.ebram-video-player-form__title {
  font-size: 20px;
  font-weight: bold;
}

.ebram-video-player-form__video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.ebram-video-player-form__video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.ebram-video-player-form__video-thumbnail-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  cursor: pointer;
}

.ebram-video-player-form__video-content ul li {
  font-size: 16px;
  line-height: 36px;
  color: grey;
  font-weight: 400;
}

.ebram-video-player-form__button {
  background-color: #a4d233;
  color: #003087;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.ebram-video-player-form__button--green {
  background-color: #a4d233;
  color: #003087;
}

.ebram-video-player-form__button--blue {
  background-color: #003087;
  color: #fff;
}

.ebram-video-player-form__form {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.ebram-video-player-form__form input {
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #003087;
}

.ebram-video-player-form__checkbox label {
  display: contents;
  font-size: 12px;
}

.ebram-video-player-form__button-container {
  display: flex;
  justify-content: flex-end;
}

/* Tablet responsiveness */
@media screen and (max-width: 768px) {
  .ebram-video-player-form__row {
    flex-direction: column;
    align-items: center;
  }

  .ebram-video-player-form__column {
    max-width: 100%;
    width: 100%;
  }

  /* For the buttons row, center them */
  .ebram-video-player-form__row:last-child {
    flex-direction: column;
    align-items: center;
  }

  .ebram-video-player-form__row:last-child .ebram-video-player-form__column {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
  }

  .ebram-video-player-form__row:last-child .ebram-video-player-form__column > div {
    width: 100%;
  }

  /* Form should remain full width */
  .ebram-video-player-form__form {
    max-width: 100%;
    width: 100%;
  }

  .ebram-video-player-form__button {
    width: 100%;
  }
}
