@charset "UTF-8";
@import url("/common/web/css/variables.css");
@import url("/common/web/css/font.css");
@import url("/common/web/css/utilities.css");
@import url("./register.css");

/* ---------------------------
   CSS RESET
---------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;

}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  color: var(--color-gray-800);
  background-color: var(--color-bg-user-page);
}

img {
  max-width: 100%;
  display: block;
}

textarea,
button,
input,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.hide {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(1px 1px 1px 1px);
  clip-path: inset(50%);
}

/* ---------------------------
   LAYOUT
---------------------------- */

.app-layout {
  min-width: 1280px;
  display: flex;
  min-height: 100vh;
  align-items: stretch;
}

/* 사이드바 */
.sidebar {
  width: 280px;
  min-height: 100%;
  background: #ffffff;
  border-right: 1px solid #ededed;
  box-shadow: 0 0 20px 0 #0000000F;
  padding: 0;
  position: relative;
  z-index: 2;
}

.sidebar-logo {
  width: 280px;
  height: 141px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logo-img {
  width: 240px;
  height: 45px;
  object-fit: contain;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px 20px 20px;
}

/* 1차 메뉴 */
.sidebar-menu-primary {
  display: block;
  height: 22px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #696969;
  text-decoration: none;
  cursor: pointer;
}

/* 닫혀있는 1차 메뉴 */
.sidebar-menu-item:not(.active) {
  width: 240px;
  height: 54px;
  padding: 16px 20px;
  gap: 10px;
  display: flex;
  align-items: center;
}

.sidebar-menu-item:not(.active) .sidebar-menu-primary {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.sidebar-menu-primary.active {
  font-weight: 700;
  color: #0b0b0b;
}

/* 활성화된 메뉴 전체 컨테이너 */
.sidebar-menu-item.active {
  width: 240px;
  padding: 16px 20px;
  gap: 12px;
  background: #ffdbad;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

/* 2차 메뉴 컨테이너 */
.sidebar-submenu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  margin-left: 8px;
}

/* 2차 메뉴 아이템 */
.sidebar-submenu-item a {
  display: block;
  width: 200px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #696969;
  text-decoration: none;
}

.sidebar-submenu-item.active a {
  font-weight: 700;
  color: #0b0b0b;
}

.sidebar-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin-bottom: 8px;
}

.sidebar-item a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #696969;
  text-decoration: none;
}

.sidebar-item.active a {
  background: #ffe9cb;
  font-weight: 700;
  color: #0b0b0b;
}

/* 메인 */
.main {
  flex: 1;
  padding: 0;
}

.main-header {
  height: 87px;
  padding: 16px 40px;
  gap: 10px;
  background: #ffffff;
  box-shadow: 0 4px 20px 0 #0000001A;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header .btn-wrap {
  display: flex;
  gap: 10px;

}

.main-content {
  padding: 0;
  margin: 40px;
}

.main-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--font-size-2xl);
  margin-bottom: 6px;
  letter-spacing: 0;
  color: var(--color-black);
}

/* ---------------------------
   CARD
---------------------------- */

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

/* 리스트 카드 */
.card.list-card {
  min-height: 839px;
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* 검색창 컨테이너 */
.search-container {
  border-radius: 16px;
  padding: 0;
  background: #FFFFFF;
  margin-bottom: 10px;
  overflow: hidden;
}

/* 검색 헤더 (검색 제목 + 토글 버튼) */
.search-header {
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 30px 30px 30px;
}

/* 검색 콘텐츠 (폼 영역) */
.search-content {
  overflow: visible;
  transition: max-height 0.3s ease;
  gap: 10px;
  margin: 0 30px 30px;
}

.search-content .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

/* 닫힌 상태 */
.search-content.collapsed {
  height: 0;
}

/* 열고 닫는 버튼 */
.toggle-button {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.toggle-button::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #B4B4B4;
  border-bottom: 2px solid #B4B4B4;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* 닫힌 상태 (위쪽 화살표) */
.toggle-button.collapsed::after {
  transform: rotate(-135deg);
}

.card-header {
  margin-bottom: 16px;
}

.card-header .card-util {
  display: flex;
  gap: 16px;
  align-items: center;
}


.card-header-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box.list-card {
  border-radius: 16px;
  padding: 0;
  display: flex;
  padding-bottom: 60px;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

/* 리스트 카드 헤더 */
.list-card .card-header {
  height: 68px;
  padding: 16px 0;
  gap: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 30px 10px 30px;
}

.card-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
}

/* 리스트 카드 제목 */
.list-card .card-title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-2xl);
  line-height: var(--font-size-3xl);
  color: var(--color-black);
}

/* 10개씩 보기 셀렉트 */
.list-card .select-sm {
  width: 206px;
  height: 36px;
  padding: 0 36px 0 10px;
  font-family: Pretendard, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 36px;
  letter-spacing: 0%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('/common/web/img/dropdown-arrow.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
}

/* ---------------------------
   FORM & INPUT
---------------------------- */

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-label {
  width: 70px;
  font-weight: 500;
  color: #666;
}

.form-field-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.form-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-separator {
  color: #aaa;
}

/* 검색 필드 */
.search-field {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 46px;
  margin-bottom: 8px;
}

/* 검색 라벨 */
.search-label {
  width: 160px;
  height: 46px;
  font-weight: 400;
  font-size: 16px;
  line-height: 15.5px;
  color: #1E1E1E;
  display: flex;
  align-items: center;
}

.search-field .form-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.input,
.select {
  border-radius: 6px;
  border: 1px solid #B6B6B6;
  padding: 8px 10px;
  font-size: 13px;
  background-color: #fff;
}

/* 드롭다운 기본 스타일 - 커스텀 화살표 */
.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('/common/web/img/dropdown-arrow.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  padding-right: 36px;
}

.input:focus,
.select:focus {
  outline: none;
  border-color: #ff9b21;
  box-shadow: 0 0 0 1px rgba(255, 155, 33, 0.1);
}

.input {
  min-width: 160px;
}

.select {
  min-width: 120px;
}

/* 검색 폼 전용 스타일 */
.search-field .select {
  width: 172px;
  height: 46px;
  border-radius: 4px;
  border: 1px solid #B6B6B6;
  background-color: #FFFFFF;
  padding: 0 36px 0 16px;
  font-family: Pretendard, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 46px;
  letter-spacing: 0%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('/common/web/img/dropdown-arrow.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
}

.search-field .input {
  width: 172px;
  height: 46px;
  border-radius: 4px;
  border: 1px solid #B6B6B6;
  background-color: #FFFFFF;
  padding: 0 16px;
  font-family: Pretendard, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 46px;
  letter-spacing: 0%;
}

/* 검색어 입력창 */
.search-field .input.flex-1 {
  min-width: 100px;
  flex: 1;
  border: 1px solid #B6B6B6;
}

.search-field .select:focus,
.search-field .input:focus {
  outline: none;
  border-color: #B6B6B6;
  box-shadow: none;
}

.select-sm {
  padding: 6px 10px;
  font-size: 12px;
}

/* flex helper */
.flex-1 {
  flex: 1;
}

/* ---------------------------
   BUTTONS
---------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.btn-outline-primary {
  height: 44px;
  border-radius: 50px;
  padding: 10px 30px;
  gap: 10px;
  border: 1px solid #F8981C;
  color: #F8981C;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
}


.btn-primary {
  height: 44px;
  border-radius: 50px;
  padding: 10px 30px;
  gap: 10px;
  background: #F8981C;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
}

.btn-primary:hover {
  background: #ff8a00;
}

.btn-primary:disabled {
  background: #E1E1E1;
  color: #FFFFFF;
}

/* 검색 버튼 */
.btn-search {
  width: 105px;
  height: 46px;
  border-radius: 50px;
  padding: 12px 40px;
  gap: 10px;
  background: #F8981C;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-search:hover {
  background: #ff8a00;
}

/* 초기화 버튼 */
.btn-outline {
  width: 117px;
  height: 46px;
  border-radius: 50px;
  border: 1px solid #B6B6B6;
  padding: 12px 40px;
  gap: 10px;
  background: #FFFFFF;
  color: #222222;
  opacity: 0.6;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
}

.btn-outline:hover {
  background: #f4f4f4;
}

/* ---------------------------
   TABLE
---------------------------- */

.card-body {
  margin: 0 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.table-wrapper {
  border: none;
  overflow: hidden;
  margin-bottom: auto;
}

.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 13px;
}

.table.ellipsis td {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.table.tc th,
.table.tc td {
  text-align: center;
}

.table tbody tr:last-child td {
  border-bottom: 1px solid #B6B6B6;
}

.table thead {
  background: #f9f9fb;
}

.table th,
.table td {
  text-align: left;
  border-bottom: 0.5px solid #B6B6B6;
  border-left: none;
  border-right: none;
  border-top: none;
  vertical-align: middle;
}

.table thead tr:first-child th {
  border-top: 0.5px solid #B6B6B6;
}

/* 테이블 행 높이 */

.table th {
  font-weight: 400;
  color: #0B0B0B;
  padding: 20px;
  line-height: 1;
  font-size: 16px;
}

.table th span {
  display: inline-block;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  height: 19px;
}

.table td {
  padding: 20px;
  color: #0B0B0B;
  font-size: 16px;
  font-weight: 400;
}

.table .no-result {
  padding: 165px 0;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}

.table strong.link {
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
}

.table .faq-complete {
  color: #F8981C;
}

.table a.link {
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
  color: #0B0B0B;
}

.table .util-btn {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;

}

/* 테이블 헤더 컬럼 크기 - padding 11px 포함 */
.col-order {
  width: 102px;
}

.col-order span {
  width: 80px;
}

.col-image {
  width: 162px;
}

.col-image span {
  width: 140px;
}

.col-title {
  width: 222px;
}

.col-title span {
  width: 200px;
}

.col-link {
  width: 242px;
}

.col-link span {
  width: 220px;
}

/* 추가 컬럼 크기 */
.col-open-date,
.col-close-date,
.col-reg-date {
  width: 222px;
}

.col-open-date span,
.col-close-date span,
.col-reg-date span {
  width: 200px;
}

.col-status {
  width: 102px;
}

.col-status span {
  width: 80px;
}

.thumb {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: #ddd;
  background-image: linear-gradient(135deg, #f7f7f7, #cfcfcf);
}

.table-title-strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-decoration: underline solid;
}

.table-link {
  word-break: break-all;
  color: #444;
}

/* ---------------------------
   PAGINATION
---------------------------- */

.pagination {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 32px;
}

.page-arrow,
.page-link,
.page-dot {
  min-width: 30px;
  height: 30px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
}

.page-arrow {
  color: #777;
}

.page-link {
  border-radius: 4px;
  color: #777;
}

.page-dot {
  background: #ff9b21;
  color: #fff;
  border-radius: 4px;
}

.page-ellipsis {
  padding: 0 4px;
  color: #aaa;
}


/* ---------------------------
   MODAL
---------------------------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  z-index: 999999;
}

.modal-overlay .modal-card {
  min-width: 320px;
  max-width: 420px;
  width: calc(100% - 32px);
  padding: 36px 32px 32px;
  border-radius: 32px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.modal-overlay .modal-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2a2723;
}

.modal-overlay .modal-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.5;
}

.modal-overlay .modal-btn,
.modal-overlay .modal-actions button {
  width: 100%;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 16px;
}

.modal-overlay .modal-actions {
  display: flex;
  gap: 12px;
}

.modal-overlay .modal-actions .btn {
  flex: 1;
}

.modal-overlay .btn-primary {
  background: #f8981c;
  color: #fff;
}

.modal-overlay .btn-primary:hover {
  background: #ff8a00;
}

.modal-overlay .btn-outline {
  border: 1px solid #baa283;
  color: #2a2723;
  background: #fff;
}

/* ---------------------------
   LOGIN PAGE
---------------------------- */

.login-page {
  background: linear-gradient(180deg, #FFF8EF 0%, #FFDBAD 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.login-container {
  width: 500px;
  height: 374px;
  border-radius: 16px;
  padding: 40px 80px;
  background: #FFFFFF;
  border: 1px solid #FFDBAD;
  box-shadow: 0 4px 40px 0 #00000080;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.login-title {
  height: 32px;
  font-family: Pretendard, monospace;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #0B0B0B;
  margin: 0 auto;
}

.login-form-wrapper {
  width: 340px;
  height: 232px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.login-fields-wrapper {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-field {
  width: 340px;
  height: 70px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-label {
  width: 340px;
  height: 20px;
  font-family: Pretendard, monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.login-input {
  width: 340px;
  height: 44px;
  border-radius: 8px;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid #464646;
  font-size: 14px;
}

.login-input:focus {
  outline: none;
  border-color: #F8981C;
}

.login-button {
  width: 340px;
  height: 46px;
  border-radius: 8px;
  padding: 12px 40px;
  background: #E1E1E1;
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.login-button:active {
  background: #F8981C;
}

.login-button:hover {
  background: #E1E1E1;
}

.login-button:active:hover {
  background: #ff8a00;
}

.btn-ico {
  width: 24px;
  height: 24px;
  border: 0;
}

.btn-ico.btn-modify {
  background: url('../img/ico_modify_01.png') 0 0 no-repeat;
}

.btn-ico.btn-del {
  background: url('../img/ico_del_01.png') 0 0 no-repeat;
}

.modal-reg {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1000;
}

.modal-reg .register-field-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.modal-reg .modal-body {
  position: relative;
  width: 915px;
  padding: 40px 80px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

@media (max-height: 1100px) {
  .modal-cont.scroll {
    max-height: 500px;
    overflow: auto;
  }
}

@media (max-height:700px) {
  .modal-cont.scroll {
    max-height: 300px;
    overflow: auto;
  }
}

.modal-reg .modal-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #0B0B0B;
}

.modal-reg .btn-primary {
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  margin: 0;
  height: 46px;
}

.modal-reg .btn-primary:disabled {
  background-color: #E1E1E1;
  color: #fff;
}

.modal-reg .btn-close {
  position: absolute;
  right: 80px;
  top: 43px;
  padding: 0;
  width: 24px;
  height: 24px;
  background: url('/common/web/img/btn_close_01.png') 0 0 no-repeat;
}

.banner-upload {
  margin-bottom: 24px;
}

.banner-upload .text01 {
  line-height: 46px;
  font-weight: 400;
  font-size: 16px;
}

.banner-upload .banner-url {
  width: 100%;
  height: 46px;
  gap: 8px;
  display: flex;
}

.banner-upload .banner-url select {
  min-width: 114px;
  height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-md);
  box-sizing: border-box;
  padding: 0 16px;
}

.banner-upload .file-upload+.text01 {
  margin-top: 24px;
}

.banner-upload .banner-url input {
  flex: 1;
  height: var(--height-input-lg);
  padding: 0 var(--spacing-md);
  border-radius: var(--radius-sm);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-base);
  line-height: var(--font-size-md);
  box-sizing: border-box;
}

.register-container .flex-box {
  display: flex;
  gap: 40px;
  padding: var(--spacing-lg) var(--spacing-xl) 0 var(--spacing-xl);
}

.register-container .flex-box>* {
  flex: 1;
}

.register-container .flex-box .register-field-wrapper {
  padding: 0;
}

.search-content .flex-box {
  display: flex;
  gap: 20px;
}

.search-content .flex-box .search-field .select {
  width: 100%;
}

.search-content .flex-box .search-field .form-inline {
  display: block;
  width: 100%;
}

.search-content .flex-box .search-field {
  flex-direction: column;
  height: auto;
  flex: 1;
  align-items: flex-start;
}

.form-flex {
  display: flex;
  gap: 16px;
}

.excel-upload {
  padding-bottom: 24px;
  border-bottom: 1px solid #E1E1E1;
}

.excel-upload dl {
  margin: 0;
}

.excel-upload dt {
  line-height: 46px;
}

.excel-upload dd {
  margin: 0;
  padding: 0 0 24px;
}

.excel-upload .upload-area {
  border: 4px dotted #CBD0DC;
  border-radius: 26px;
  padding: 40px 0 20px;
  text-align: center;
}

.excel-upload .upload-area .text01 {
  font-size: 18px;
  color: #0B0B0B;
  font-weight: 500;
  margin-bottom: 15px;
}

.excel-upload .upload-area .text02 {
  font-size: 14px;
  color: #0B0B0B;
  font-weight: 400;
  margin-bottom: 34px;
}

.upload-notice {
  padding: 0;
  margin: 0 0 24px;
}

.upload-notice dt {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
}

.upload-notice dd {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
}

.tag-cloud {
  display: flex;
}

.tag-cloud .tag-item {
  display: inline-flex;
  padding: 0 12px;
  line-height: 32px;
  background-color: #F5F5F5;
  border-radius: 30px;
  align-items: center;
  gap: 6px;
}

.tag-cloud .tag-item .file-link {
  font-size: 12px;
  font-weight: 400;
  color: #0B0B0B;
}

.tag-cloud .tag-item .btn-del {
  width: 20px;
  height: 20px;
  background: url('/common/web/img/btn_del01.png') 0 0 no-repeat;
}




.modal-search {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1000;
}

.modal-search .register-field-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.modal-search .modal-body {
  position: relative;
  width: 915px;
  padding: 40px 80px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.modal-search .modal-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #0B0B0B;
}

.modal-search .btn-primary {
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  margin: 0;
  height: 46px;
}

.modal-search .btn-primary:disabled {
  background-color: #E1E1E1;
  color: #fff;
}

.modal-search .btn-close {
  position: absolute;
  right: 80px;
  top: 43px;
  padding: 0;
  width: 24px;
  height: 24px;
  background: url('/common/web/img/btn_close_01.png') 0 0 no-repeat;
}


.search-edu {
  padding-bottom: 24px;
  border-bottom: 1px solid #E1E1E1;
}

.search-edu dl {
  margin: 0;
}

.search-edu dt {
  line-height: 46px;
}

.search-edu dd {
  margin: 0;
  padding: 0 0 24px;
}

.search-edu .scroll {
  max-height: 300px;
  overflow: auto;
  margin-top: 24px;
}

.search-edu .scroll input[type="radio"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #C0C0C0;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

/* 안쪽 동그라미 */
.search-edu .scroll input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  /* 안쪽 원 크기 */
  height: 15px;
  border-radius: 50%;
  background-color: #F8981C;
  transform: translate(-50%, -50%);
}

.search-edu .scroll input[type="radio"]:checked {
  border: 2px solid #F8981C;
}