.converter-box {
  margin-top: 1.52rem;
  @media (max-width: 768px) {
    margin-top: 0.8rem;
  }
}

.upload-section {
  height: 8rem;
  border: 1px dashed #93939380;
  border-radius: 0.4rem;
  cursor: pointer;
  background: rgba(102, 126, 234, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.52rem;
  @media (max-width: 768px) {
    margin-top: 0.8rem;
    height: 6rem; /* tự thêm đợi anh Sang cho ý kiến */
  }
}
.upload-icon {
  height: 2rem;
  width: 2.72rem;
}
.upload-icon img {
  color: rgba(147, 147, 147, 1);
  width: 100%;
  height: 100%;
}
.upload-text {
  font-size: 1.2rem;
  color: rgba(147, 147, 147, 1);
  height: 2.4rem;
}

.video-preview {
  position: relative;
  height: 6.2rem;
  border: 1px dashed #667EEA;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-50);
  justify-content: center;
  display: none;
}

.video-preview.show {
  display: flex;
  padding: 0 0.5rem;
  align-items: center;
  flex-direction: row;
}

.video-preview-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: transparent;
  background: transparent;
  color: var(--gray-500);
  font-size: 0.72rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
}
.video-thumbnail {
  width: 11rem;
  padding-top: 5.3rem;
  border-radius: var(--border-radius);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.72rem;
}
.video-info {
  flex: 1;
  font-size: 1rem;
  text-align: left;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: calc(100% - 11rem);
}
.video-title {
  font-weight: 700;
  line-height: 100%;
  color: rgba(39, 39, 39, 1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.video-details {
  font-weight: 400;
  color: rgba(147, 147, 147, 1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}

/* .video-preview {
  display: none;
} */

/* .upload-section {
  border: 1px dashed #DDD;
  border-radius: 10px;
  cursor: pointer;
  padding: 14px;
  background: rgba(102, 126, 234, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.upload-section:hover {
  border-color: #007bff;
}

.upload-icon {
  width: 52px;
  height: 26px;
}

.upload-section p {
  color: #666;
  font-size: 14px;
}



 */