/* alerts.css — Alerts page-specific styles */

.alerts-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  display: none;
}

.alerts-panel.active {
  display: block;
}

/* Alert creation form */
.alert-form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.alert-form input {
  padding: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.85rem;
}

.alert-form input[type="text"] {
  flex: 1;
  min-width: 150px;
}

.alert-form input[type="number"] {
  width: 120px;
}

/* Alert rows */
.alert-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

/* Triggered alerts */
.alert-triggered {
  background: rgba(63, 185, 80, 0.1);
  border-left: 3px solid var(--green);
  padding-left: 12px;
  margin: 8px 0;
  border-radius: 4px;
}

/* Match details inside triggered alert */
.alert-match {
  font-size: 0.82rem;
  color: var(--text2);
  padding: 4px 0;
}

.alert-match strong {
  color: var(--gold);
}
