@charset "utf-8";

.notice-list {
  list-style: none;
}

.notice-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
  font-size: 1.2em;
}

.notice-title {
  flex: 1;
  margin-right: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  text-decoration: none;
}

.notice-date {
  color: #666;
  font-size: 0.9em;
  white-space: nowrap;
}

.badge-new {
  background-color: #0066CC;
  color: white;
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 0.8em;
  margin-left: 5px;
}