* {
  color: #434343;
}

.search {
  width: 100%;
  padding-top: 70px;
}

#searchForm {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #fafafa;
  border-top: 1px solid #b3b3b3;
}

#searchForm .item {
  display: flex;
  gap: 10px;
  align-items: center;
}

#searchForm .item .box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

#searchForm .item .box label {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: bold;
}

#searchForm .item .box input {
  width: 100%;
  height: 30px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  background-color: #fff;
  padding-left: 10px;
}

#searchForm .item #searchBtn {
  width: 100px;
  height: 30px;
  background-color: #000;
  border-radius: 5px;
  color: #fff;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(255,255,255,.5);
  display: none;
}

/* 데이터 테이블 관련 */
#dataList {
  height: calc(100dvh - 206px);
}

#dataList td,
#dataList2 td{
  font-size: 12px;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event_tag {
  width: fit-content;
  font-size: 9px;
  color: #fff;
  background-color: #d81313;
  border-radius: 5px;
  padding: 1px 5px;
  letter-spacing: .5px;
}
.dx-scrollable-container::-webkit-scrollbar {
  display: none;
}

#pagination-and-filter {
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fafafa;
  padding: 0 10px;
  border-top: 1px solid #b3b3b3;
}

#custom-pagination {
  display: flex;
  align-items: center;
}

#custom-pagination button {
  font-weight: bold;
}

#custom-filter label {
  font-size: 14px;
  font-weight: bold;
}


/* 팝업 */

#popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: none;
}

#popup .back {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

#popup .close_btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: bold;
}

#popup .popup_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 90%;
  height: 80%;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}

#popup .popup_box .title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.product-detail-table {
  width: 100%;
  font-size: 13px;
  text-align: left;
}

.product-detail-table tr {
  border-bottom: 1px solid #e8e8e8;
}

.product-detail-table td {
  font-size: 11px;
}

.product-detail-table th {
  padding:1px 10px;
  min-width: 70px;
}