.iv-header-dashboard-gradient {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.16), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(140deg, #0b3d31 0%, #0f6b53 55%, #082620 100%);
}

.iv-status.is-negative,
.iv-status.is-danger {
  background: rgba(245, 81, 95, 0.18);
  color: #f5515f;
}

.iv-alert-stack {
  display: grid;
  gap: 14px;
}

.iv-public-notice-wrap {
  padding: 1.25rem 0;
}

.iv-legal-section {
  padding-top: 0;
}

.iv-alert-tile {
  --iv-alert-accent: #0f6b53;
  --iv-alert-bg: #f4faf8;
  --iv-alert-border: rgba(15, 107, 83, 0.22);
  --iv-alert-glow: rgba(15, 107, 83, 0.18);
  --iv-alert-chip: rgba(15, 107, 83, 0.14);
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px 16px 16px;
  border-radius: 16px;
  border: 1px solid var(--iv-alert-border);
  background: radial-gradient(circle at 92% 0%, var(--iv-alert-glow), transparent 46%), linear-gradient(160deg, #ffffff 0%, var(--iv-alert-bg) 100%);
  box-shadow: 0 16px 30px rgba(9, 39, 31, 0.08);
  overflow: hidden;
}

.iv-alert-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--iv-alert-accent);
}

.iv-alert-tile.is-success {
  --iv-alert-accent: #1b9a58;
  --iv-alert-bg: #eefaf2;
  --iv-alert-border: rgba(27, 154, 88, 0.28);
  --iv-alert-glow: rgba(27, 154, 88, 0.22);
  --iv-alert-chip: rgba(27, 154, 88, 0.14);
}

.iv-alert-tile.is-info {
  --iv-alert-accent: #0b84d8;
  --iv-alert-bg: #eef7ff;
  --iv-alert-border: rgba(11, 132, 216, 0.26);
  --iv-alert-glow: rgba(11, 132, 216, 0.2);
  --iv-alert-chip: rgba(11, 132, 216, 0.13);
}

.iv-alert-tile.is-warning {
  --iv-alert-accent: #d08700;
  --iv-alert-bg: #fff8e9;
  --iv-alert-border: rgba(208, 135, 0, 0.3);
  --iv-alert-glow: rgba(208, 135, 0, 0.2);
  --iv-alert-chip: rgba(208, 135, 0, 0.14);
}

.iv-alert-tile.is-danger {
  --iv-alert-accent: #c23d49;
  --iv-alert-bg: #fff1f2;
  --iv-alert-border: rgba(194, 61, 73, 0.3);
  --iv-alert-glow: rgba(194, 61, 73, 0.2);
  --iv-alert-chip: rgba(194, 61, 73, 0.14);
}

.iv-alert-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--iv-alert-chip);
  color: var(--iv-alert-accent);
  font-size: 18px;
}

.iv-alert-content {
  flex: 1;
  min-width: 0;
}

.iv-alert-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.iv-alert-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--iv-alert-chip);
  color: var(--iv-alert-accent);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.iv-alert-time {
  color: #5b7f74;
  font-size: 0.76rem;
  white-space: nowrap;
  font-weight: 500;
}

.iv-alert-content strong {
  display: block;
  color: #1b3f34;
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.iv-alert-content p {
  margin: 0;
  color: #607871;
  font-size: 0.88rem;
}

.iv-alert-content li {
  color: #607871;
  font-size: 0.88rem;
}

.iv-alert-content ul {
  margin: 0;
  padding-left: 1rem;
}

.iv-alert-dismiss {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.8);
  color: #68837b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.iv-alert-dismiss:hover {
  background: #ffffff;
  color: #2b4a40;
}

.iv-dashboard-avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.iv-dashboard-sidebar,
.iv-dashboard-sidebar * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 575px) {
  .iv-alert-tile {
    padding: 14px 12px 14px 12px;
    gap: 10px;
  }

  .iv-alert-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .iv-alert-meta {
    flex-wrap: wrap;
  }
}
