/* Notices Page Styles */
.notice-detail {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .notice-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
  }
  
  .notice-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .notice-meta {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .notice-date,
  .notice-author {
    display: flex;
    align-items: center;
  }
  
  .notice-date i,
  .notice-author i {
    margin-right: 5px;
  }
  
  .new-badge {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 10px;
    animation: pulse 1.5s infinite;
  }
  
  .important-badge {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
  }
  
  @keyframes pulse {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }
  
  .notice-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
  }
  
  .notice-content p {
    margin-bottom: 20px;
  }
  
  .notice-content ul,
  .notice-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .notice-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 4px;
  }
  
  .notice-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
  }
  
  /* Notices List */
  .notices-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .notice-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
  }
  
  .notice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .notice-item.important {
    border-left-color: #f39c12;
    background-color: #fffbf0;
  }
  
  .notice-item .notice-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
  }
  
  .notice-item .notice-excerpt {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 15px;
  }
  
  .notice-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }
  
  .read-more {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    font-weight: 500;
    font-size: 15px;
  }
  
  .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .read-more:hover i {
    transform: translateX(5px);
  }
  
  /* Responsive Styles */
  @media (max-width: 767px) {
    .notice-title {
      font-size: 24px;
    }
  
    .notice-item {
      padding: 20px;
    }
  
    .notice-item .notice-title {
      font-size: 18px;
    }
  
    .notice-footer-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }
  