/* notice-box.css — Team Portal lib primitive: informational callout / notice banner.
   3 tones: info (blue) / warning (amber) / danger (red).
   Loaded via <link> в radar/team/index.html.
   Block 3090 (task radar-os--510-crew-mode). */

.notice-box {
  padding: 10px 12px;
  border-left: 3px solid transparent;
  border-radius: 4px;
  color: #cbd6e8;
  font-size: 13px;
  line-height: 1.45;
}

.notice-box--info {
  background: rgba(58, 167, 226, 0.08);
  border-left-color: #3AA7E2;
}

.notice-box--warning {
  background: rgba(244, 163, 0, 0.10);
  border-left-color: #F4A300;
}

.notice-box--danger {
  background: rgba(220, 74, 74, 0.10);
  border-left-color: #DC4A4A;
}

.notice-box b {
  color: #e8edf5;
}

.notice-box a {
  color: inherit;
  text-decoration: underline;
}
