/* Alert boxes */
.alert {
  padding: 15px 20px;
  margin: 15px 0;
  border: 1px solid;
  border-radius: var(--radius-medium);
  background: transparent;
}
.alert-info {
  border-color: #4a9eff;
  color: #4a9eff;
  background: rgba(74, 158, 255, 0.1);
}
.alert-success {
  border-color: #66bb6a;
  color: #66bb6a;
  background: rgba(102, 187, 106, 0.1);
}
.alert-warning {
  border-color: #ffa726;
  color: #ffa726;
  background: rgba(255, 167, 38, 0.1);
}
.alert-error {
  border-color: #ef5350;
  color: #ef5350;
  background: rgba(239, 83, 80, 0.1);
}

/* Light theme tuned tints */
body.theme-light .alert-info {
  border-color: #0066cc;
  color: #0066cc;
  background: rgba(0, 102, 204, 0.1);
}
body.theme-light .alert-success {
  border-color: #28a745;
  color: #28a745;
  background: rgba(40, 167, 69, 0.1);
}
body.theme-light .alert-warning {
  border-color: #ff9800;
  color: #ff9800;
  background: rgba(255, 152, 0, 0.1);
}
body.theme-light .alert-error {
  border-color: #dc3545;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}
