.notice-container {
    background: #f9f9f9;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: slideFadeIn 0.5s forwards;
  }
  
  @keyframes slideFadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .notice-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
  }
  
  .notice-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
  }
  
  .notice-time {
    font-size: 0.9rem;
    color: #999;
  }
  
  .pdf-button {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background-color: #007bff;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .pdf-button:hover {
    background-color: #0056b3;
  }
  
  .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
  }
  
  .pagination-btn {
    background: #fff;
    border: 1px solid #007bff;
    padding: 6px 12px;
    border-radius: 4px;
    color: #007bff;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .pagination-btn:hover,
  .pagination-btn.active {
    background: #007bff;
    color: #fff;
  }
