.notice-box {
    background-color: #f9f9f9;
    border-left: 6px solid var(--primary-color, #5c6bc0);
    padding: 16px;
    margin: 20px auto;
    max-width: 900px;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .notice-box ol {
    padding-left: 20px;
  }
  

.illust-table-wrapper {
    overflow-x: auto;
    margin-top: 1rem;
  }
  
  table#illustTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
  }
  
  table#illustTable th,
  table#illustTable td {
    border: 1px solid #ccc;
    padding: 8px 10px;
    text-align: left;
  }
  
  table#illustTable th {
    background-color: var(--primary-color, #f0f0f0);
    font-weight: bold;
  }
  
  body.dark-mode table#illustTable th {
    background-color: #333;
    color: #fff;
  }
  
  body.dark-mode table#illustTable td {
    background-color: #222;
    color: #ddd;
  }

  .filter-button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    background-color: var(--primary-color, #ccc);
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .filter-btn:hover {
    background-color: #999;
  }
  
  .filter-btn.active {
    background-color: #333;
    color: #fff;
  }

  .filter-button-group {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
  }
  
  
  .search-container {
    margin-bottom: 1rem;
  }
  
  #searchInput {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #aaa;
    border-radius: 6px;
    font-size: 14px;
  }

  /* 정렬 가능한 컬럼 스타일 */
th.sortable {
    cursor: pointer;
    user-select: none;
  }
  
  /* 정렬 아이콘 스타일 */
  #sortIcon {
    font-size: 0.8em;
    margin-left: 5px;
    vertical-align: middle;
  }
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 6px;
  }
  
  .pagination button {
    padding: 6px 10px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    color: #000; /* 선택 안된 페이지 번호 색상 → 검정 */
    font-size: 14px;
    border-radius: 4px;
  }
  
  .pagination button.active {
    background-color: #333;
    color: white;
    font-weight: bold;
  }
  
  .pagination button:hover {
    background-color: #eee;
  }
  
  @media (max-width: 768px) {
    #illustTable th, #illustTable td {
      font-size: 0.8rem;
      padding: 6px;
    }
    .filter-wrapper {
      flex-direction: column;
      align-items: center;
    }
  }

  .home-icon {
    width: 110px; /* 이미지 크기 조정 */
    height: 110px; /* 이미지 크기 조정 */
    margin-left: 10px;
}
  