.wvvm-video-message__wrapper {
  padding: 5px;
  margin-bottom: 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.wvvm-video-message__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wvvm-video-message__title {
  margin-bottom: 0 !important;
  font-weight: 600;
  font-size: 18px;
}

.wvvm-video-message__content {
  padding: 20px 0;
  display: none;
  /* Initially hidden */
  flex-direction: column;
}

.wvvm-video-message__subtitle {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5em !important;
}

.wvvm-video-message__fields-wrapper {
  margin-bottom: 1.5em;
  display: flex;
  gap: 10px;
}

.wvvm-video-message__field-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.wvvm-video-message__field-icon {
  margin-bottom: 0 !important;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: all 0.3s;
}

.wvvm-video-message__field-icon:hover {
  background-color: #c7c7c7;
  transform: scale(1.02);
}

.wvvm-video-message__field-icon .wvvm-video-message__input-wrapper {
  display: none;
}

.wvvm-video-message__field-icon label {
  margin: 10px !important;
  width: 30px;
  height: 30px;
  display: block;
  cursor: pointer;
}

.wvvm-video-message__buttons-wrapper {
  display: flex;
  gap: 10px;
}

.wvvm-video-message__link-wrapper {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wvvm-video-message__upload-url p {
  margin-bottom: 5px !important;
}

.wvvm-video-message__upload-qr {
  width: 200px;
  height: 200px;
  display: block;
  background-color: gray;
}

@media screen and (max-width: 768px) {
  .wvvm-video-message__upload-qr {
    width: 150px;
    height: 150px;
  }
}


.wvvm-video-message__files-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wvvw-video-message__file {
  margin-bottom: 1em;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.wvvw-video-message__file-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ccc;
  border-radius: 4px;
}

.wvvw-video-message__file-icon svg {
  width: 30px;
}

.wvvw-video-message__file-title {
  margin: 0 !important;
}

.wvvw-video-message__file-remove {
  width: 20px;
  height: 20px;
  background: #c93232;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-radius: 3px;
}

.wvvm-video-message__remove-media {
  margin-left: auto;
  background-color: #c93232 !important;
  color: #fff !important;
  cursor: pointer;
  transition: all 0.3s;
}

.wvvm-video-message__remove-media:hover {
  opacity: 0.8;
}

.wvvm-video-message__progressbar {
  margin-bottom: 10px;
  width: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.wvvm-video-message__progressbar-wrapper {
  width: 100%;
  height: 25px;
  background-color: #ccc;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.wvvm-video-message__progressbar-line {
  width: 0;
  height: 100%;
  background-color: #35ca73;
  border-radius: 5px;
}

.wvvm-video-message__progressbar-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
}

.wvvm-video-message__notice-wrapper {
  margin: 10px 0;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .wvvm-video-message__notice-wrapper {
    width: 90%;
    right: 50%;
    transform: translateX(50%);
  }
}

.wvvm-video-message__notice {
  padding: 10px 20px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffc69c;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-weight: 700;
  color: white;
}


/* roses media */
.wvvm-video-message__banner {
  margin-bottom: 10px;
  width: 100%;
  object-fit: cover;
}