.table-wrap::-webkit-scrollbar {
  height: 6px;
}
.table-wrap::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.table-wrap {
  width: 100%;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #333;
}

.custom-table th,
.custom-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.custom-table th {
  background-color: #f0f0f0;
  font-weight: 600;
}

.custom-table .left {
  text-align: left;
}

.custom-table .title {
  background-color: #bdbdbd;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.custom-table .gray {
  background-color: #f1f8ff;
}

/* ===== 모바일 ===== */
@media (max-width: 768px) {

  /* 스크롤 */
  .table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* 테이블 */
  .custom-table {
    min-width: 700px;   /* 핵심 */
    width: auto;
  }

/* 셀만 유지 */
  .custom-table th,
  .custom-table td {
    font-size: 13px;
    padding: 10px;
    white-space: nowrap;
  }

}