.user-video-page .video-toolbar {
  margin-bottom: 32px !important;
}

.user-video-page .video-grid {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 콤보박스 기본 구조 복구 */
.user-video-page .custom-select {
  position: relative !important;
  display: block !important;
  width: 150px;
  height: 58px;
  flex: none;
}

/* 실제로 보이는 선택 박스 */
.user-video-page .custom-select .select-selected {
  width: 100%;
  height: 100%;
  box-sizing: border-box;

  display: flex !important;
  align-items: center;
  justify-content: space-between;

  padding: 0 22px;
}

/* 옵션 박스 위치 */
.user-video-page .custom-select .select-options {
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  width: 100%;
  z-index: 100;
}
@media (max-width: 900px) {
  /* 툴바 아래 공백 줄이기 */
  .user-video-page .video-toolbar {
    margin-bottom: 26px !important;
  }

  /* 세로 정렬은 유지 */
  .user-video-page .image-search-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .user-video-page .image-search-bar > * {
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    flex: none !important;
  }

  .user-video-page .search-input-wrapper,
  .user-video-page .custom-select,
  .user-video-page .search-btn,
  .user-video-page .toolbar-upload-btn {
    width: 100% !important;
    height: 58px !important;
  }

  /* 중요: custom-select 자체는 flex 금지 */
  .user-video-page .custom-select {
    display: block !important;
  }

  .user-video-page .custom-select .select-selected {
    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .user-video-page .search-btn,
  .user-video-page .toolbar-upload-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .user-video-page .video-grid {
    margin-top: 0 !important;
  }
}

/* =========================================================
   User Video Search Input Final Fix
   - 아이콘/placeholder 겹침 제거
   - 검색창 높이 통일
========================================================= */

.user-video-page .search-input-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 58px !important;
  min-height: 58px !important;

  display: flex !important;
  align-items: center !important;

  box-sizing: border-box !important;
  overflow: visible !important;
}

/* 검색 아이콘은 입력 흐름에서 빼고 왼쪽에 고정 */
.user-video-page .search-input-wrapper .search-icon {
  position: absolute !important;
  left: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  margin: 0 !important;
  padding: 0 !important;

  width: 16px !important;
  height: 16px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 22px !important;
  line-height: 1 !important;

  pointer-events: none !important;
  z-index: 2 !important;
}

/* input을 감싸는 영역은 아이콘 공간만큼 밀어줌 */
.user-video-page .search-input-wrapper .tag-container {
  width: 100% !important;
  height: 100% !important;
  min-height: 58px !important;

  display: flex !important;
  align-items: center !important;

  box-sizing: border-box !important;
  padding-left: 70px !important;
  padding-right: 20px !important;

  margin: 0 !important;
}

/* 실제 input */
.user-video-page .search-input-wrapper #keywordInput {
  width: 100% !important;
  height: 100% !important;
  min-height: 58px !important;

  display: block !important;
  flex: 1 1 auto !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  outline: none !important;
  background: transparent !important;

  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: normal !important;

  box-sizing: border-box !important;
}

.user-video-page .search-input-wrapper #keywordInput::placeholder {
  color: rgba(255, 255, 255, 0.36) !important;
  opacity: 1 !important;
}

/* 자동완성 박스 위치 보정 */
.user-video-page .search-input-wrapper .autocomplete-box,
.user-video-page .search-input-wrapper #autocompleteBox {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: calc(100% + 8px) !important;
  z-index: 100 !important;
}

.uv-upload-progress-wrap {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}

.uv-upload-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}

.uv-upload-progress-head strong {
  color: #fff;
  font-weight: 700;
}

.uv-upload-progress-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.09);
}

.uv-upload-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  transition: width .18s ease;
}