
/** ADD YOUR AWESOME CODES HERE **/

/* Style for NEW badge */
.new-badge {
  display: inline-block;
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 2px 6px;
  margin-right: 5px;
  border-radius: 4px;
  font-size: 10px;
  animation: flash 1s infinite;
}

/* Flash animation */
@keyframes flash {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* Optional list styling */
.notice-list li {
  margin-bottom: 5px;
  list-style-type: disc;
}