.notice-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.notice-header {
  text-align: center;
  margin-bottom: 50px;
}

.notice-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.notice-header p {
  font-size: 1.1rem;
  color: #666;
}

.notice-search {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #e0e0e0;
}

.search-form {
  display: flex;
  gap: 15px;
  align-items: end;
}

.search-group {
  flex: 1;
}

.search-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.form-control, select.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
}

.form-control:focus, select.form-control:focus {
  border-color: #333;
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.1);
}

.btn-search {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-search:hover {
  background-color: #000;
}

.notice-stats {
  text-align: right;
  margin-bottom: 20px;
  color: #666;
  font-size: 1.2rem;
}

.notice-list {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

.notice-table {
  width: 100%;
  margin-bottom: 0;
}

.notice-table thead {
  background: #f8f9fa;
}

.notice-table th {
  border: none;
  padding: 20px 15px;
  font-weight: 600;
  color: #333;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.notice-table td {
  border: none;
  padding: 20px 15px;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.notice-table tbody tr:hover {
  background-color: #f8f9fa;
}

.notice-table tbody tr:last-child td {
  border-bottom: none;
}

.notice-number {
  text-align: center;
  font-weight: 600;
  color: #999;
  width: 80px;
}

.notice-category {
  text-align: center;
  width: 120px;
}

.category-tag {
  display: inline-block;
  background: #333;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.category-tag.update {
  background: #666;
}

.category-tag.event {
  background: #999;
}

.category-tag.maintenance {
  background: #777;
}

.notice-title {
  text-align: left;
}

.notice-title a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  display: block;
  padding: 5px 0;
}

.notice-title a:hover {
  color: #000;
}

.notice-date {
  text-align: center;
  color: #999;
  font-size: 1.2rem;
  width: 120px;
}

.notice-views {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  width: 80px;
}

.notice-important {
  color: #dc3545 !important;
  font-weight: 700 !important;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination .page-link {
  border: 1px solid #e0e0e0;
  color: #666;
  padding: 10px 15px;
  margin: 0 2px;
  border-radius: 8px;
  background: white;
}

.pagination .page-link:hover {
  background-color: #f5f5f5;
  color: #333;
  border-color: #ccc;
}

.pagination .page-item.active .page-link {
  background-color: #333;
  color: white;
  border-color: #333;
}

.empty-notice {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.empty-notice h4 {
  color: #999;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .notice-header h1 {
    font-size: 2rem;
  }

  .search-form {
    flex-direction: column;
    gap: 20px;
  }

  .notice-table {
    font-size: 0.9rem;
  }

  .notice-table th,
  .notice-table td {
    padding: 15px 10px;
  }

  .notice-number,
  .notice-views {
    display: none;
  }

  .notice-category {
    width: 80px;
  }

  .notice-date {
    width: 90px;
  }

  .navbar-brand img {
    max-height: 30px;
  }
}