/* Recent Bulletins Section */
.recent-bulletins-section {
  padding: 80px 0;
  background: #F8FBFF;
}

.night-mode .recent-bulletins-section {
  background: transparent;
}

.bulletins-table tbody tr {
  transition: all 0.3s ease;
}

.bulletins-table tbody tr:hover {
  background: var(--light-blue) !important;
  transform: scale(1.01);
}

.night-mode .bulletins-table tbody tr:hover {
  background: rgba(65, 143, 222, 0.1) !important;
}

.bulletin-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bulletin-link:hover {
  color: var(--primary-blue);
}

.night-mode .bulletin-link {
  color: white;
}

.action-buttons {
  display: flex;
  gap: 8px;
}

.btn-action {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-action.view {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.btn-action.view:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-action.download {
  background: #FFF4CC;
  color: var(--accent-gold);
}

.btn-action.download:hover {
  background: var(--accent-gold);
  color: var(--charcoal-black);
}
