
.alert-item {
    margin-bottom: 20px;
    overflow: hidden;
    padding: 8px 16px;
    position: relative;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-item-left {
    display: flex;
    align-items: center;
}

.alert-item-icon {
    margin-right: 10px;
}

.alert-icon-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-icon-wrapper svg {
    height: 80%;
    width: 80%;
    fill: currentColor;
}

.alert-item-title {
    font-weight: 600;
}

.alert-severity-label {
    font-size: 13px;
}

.alert-time-info {
    font-size: 13px;
    display: flex;
    align-items: center;
}

.alert-info-headline {
    font-size: 13px;
    margin-bottom: 4px;
}

.alert-time-info .time-icon {
    width: 10px;
    margin-right: 4px;
}

.alert-time-info .time-icon svg {
    height: 100%;
    width: 100%;
}


.alert-time-info .time-em {
    font-weight: 600;
    margin-right: 4px;
}


.alert-effective {
}

.alert-category-filter {
    padding-bottom: 40px;
}

.alerts-group {
    margin-bottom: 50px;
}

.alerts-group .group-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.empty-alerts-state {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    background-color: #f8f9fb;
    padding: 20px;
}

.empty-alerts-icon {
    height: 24px;
    width: 24px;
    margin-right: 8px;
}

.empty-alerts-icon svg {
    height: 100%;
    width: 100%;
    fill: green;
}

/* ── ALERT LINK ── */
.alert-link {
  text-decoration: none;
  display: block;
}

/* ── ALERT ITEM ── */
.alert-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #eee;
  border-left-width: 3px;
  background: #fff;
  margin-bottom: 6px;
  transition: background 0.12s, box-shadow 0.12s;
}

.alert-link:hover .alert-item {
  background: #fafafa;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

/* ── LEFT ── */
.alert-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

/* ── ICON ── */
.alert-item-icon {
  flex-shrink: 0;
}

.alert-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-icon-wrapper svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── INFO ── */
.alert-item-info {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alert-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alert-info-headline {
  font-size: 12px;
  color: #555;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alert-time-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #aaa;
  margin-top: 1px;
}

.alert-time-info .time-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.alert-time-info .time-icon svg {
  width: 10px;
  height: 10px;
  fill: #bbb;
}

.alert-time-info .time-em {
  font-weight: 600;
  color: #888;
}

/* ── RIGHT: pill + arrow ── */
.alert-item-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.alert-severity-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.alert-arrow {
  display: flex;
  align-items: center;
  color: #bbb;
  transition: color 0.12s, transform 0.12s;
}

.alert-arrow svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.alert-link:hover .alert-arrow {
  color: #185FA5;
  transform: translateX(2px);
}
