/* Notice Board Inner Styles */
.dcc-notice-ticker-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Single notice item */
.notice-item {
  background: #a6bedb;
  color: white;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}

.notice-item p {
  margin: 0;
  font-size: 1rem;
}

.notice-date {
  font-size: 0.85rem;
  color: #dfe6e9;
  margin-top: 5px;
}

/* Pause scroll on hover */
.dcc-notice-ticker-wrapper:hover {
  cursor: pointer;
  height: 100%; 
    overflow-y: auto;
}
