.noticeContainer {
    max-width: 1200px;
    margin: 100px auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
    font-family: "Marcellus","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);
    }
  }

  .paging a {
  display: inline-block;
  margin: 0 4px;
  padding: 6px 12px;
  color: #333;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.paging a.active {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
.paging a:hover {
  background-color: #eee;
}
.answerBox {
  margin-top: 40px;
  padding: 25px;
  border-left: 6px solid #007BFF;
  background: linear-gradient(135deg, #f5faff, #ffffff);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-family: 'Pretendard', sans-serif;
  position: relative;
}

.answerBox h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #007BFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.answerBox h3::before {

  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #007BFF;
  font-size: 18px;
}

.answerBox p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  white-space: pre-wrap;
}