.noticeContainer {
    max-width: 1200px;
    margin: 100px auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
    font-family: "Pretendard",sans-serif;
  }
  .topRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .writeBtn {
    padding: 0.5rem 1rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
  }
  .writeBtn:hover {
    background: #333;
  }
  .searchBar {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .searchSelect {
    padding: 0.4rem;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    outline: none;
    border-right: none;
  }
  .searchInput {
    width: 200px;
    padding: 0.4rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    outline: none;
    border-left: none;
  }
  .searchBtn {
    padding: 0.4rem 0.7rem;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-size: 0.9rem;
  }
  .searchBtn i {
    font-size: 0.9rem;
  }
  .noticeTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: #333;
    border-top: 1px solid #333;
  }
  .noticeTable thead th {
    text-align: center;
    padding: 0.8rem;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
  }
  .noticeTable tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
  }
  .noticeTable tbody tr:last-child {
    border-bottom: none;
  }
  .noticeTable tbody tr:hover {
    background: #f2f2f2;
  }
  .noticeTable td {
    padding: 0.8rem;
    vertical-align: middle;
    text-align: center;
  }
  .paging {
    margin-top: 2rem;
    text-align: center;
  }
  .paging a {
    display: inline-block;
    margin: 0 0.3rem;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
  }
  .paging a.active {
    background: #333;
    color: #fff;
    border-color: #333;
  }
  @media (max-width: 768px) {
    .searchInput {
      width: 120px;
    }
    .noticeTable thead {
      display: none;
    }
    .noticeTable td {
      text-align: start;
    }
    .noticeTable td:nth-child(2) {
      width: 90%;
    }
    .noticeTable td:nth-child(3),
    .noticeTable td:nth-child(4),
    .noticeTable td:nth-child(5) {
      display: none;
    }
    .titleCell::after {
      display: block;
      margin-top: 0.3rem;
      font-size: 0.85rem;
      color: #666;
      content: "작성자: " attr(data-writer) "   등록일: " attr(data-date);
    }
  }