/* ── Alert Cards ── */
.alert-card {
  background: #fff;
  border: 1px solid var(--whic-border);
  border-radius: var(--whic-radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow .2s;
}
.alert-card:hover { box-shadow: var(--whic-card-shadow); }
.alert-card .alert-icon { font-size: 24px; color: var(--whic-green); }
.alert-card .alert-info { flex: 1; }
.alert-card .alert-name { font-weight: 600; font-size: 15px; }
.alert-card .alert-filters { font-size: 13px; color: var(--whic-text-light); margin-top: 2px; }
.alert-card .alert-actions { display: flex; gap: 8px; align-items: center; }
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  background: #ccc;
  border-radius: 11px;
  cursor: pointer;
  transition: background .2s;
}
.toggle-switch.on { background: var(--whic-green); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.toggle-switch.on::after { transform: translateX(18px); }

/* ── Anlass Cards ── */
.occasion-card {
  background: #fff;
  border: 1px solid var(--whic-border);
  border-radius: var(--whic-radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.occasion-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--whic-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.occasion-info { flex: 1; }
.occasion-name { font-weight: 600; font-size: 15px; }
.occasion-detail { font-size: 13px; color: var(--whic-text-light); }
.occasion-date { font-size: 13px; color: var(--whic-green); font-weight: 600; }
.occasion-days { font-size: 12px; color: var(--whic-text-light); }
