.push-reminder-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 15px;
  padding: 12px 13px;
  border: 1px solid #cfe0ee;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef8ff, #f8fbff);
}

.push-reminder-row strong,
.push-reminder-row small,
.push-settings-copy strong,
.push-settings-copy small {
  display: block;
}

.push-reminder-row strong,
.push-settings-copy strong {
  font-size: 14px;
}

.push-reminder-row small,
.push-settings-copy small {
  margin-top: 3px;
  color: #6886a0;
  font-size: 11px;
  line-height: 1.4;
}

.push-reminder-row .mode-switch {
  flex: 0 0 auto;
}

.push-settings-card {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid #cfe0ee;
  border-radius: 10px;
  background: #f4faff;
}

.push-settings-copy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.push-settings-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #dcefff;
  color: #1769aa;
  font-size: 18px;
}

.push-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.push-settings-button,
.push-test-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 7px;
  font-weight: 750;
  cursor: pointer;
}

.push-settings-button {
  border: 0;
  background: #1769aa;
  color: #fff;
}

.push-settings-button.is-enabled {
  border: 1px solid #bfd7e9;
  background: #fff;
  color: #42627f;
}

.push-test-button {
  border: 1px solid #bfd7e9;
  background: #fff;
  color: #1769aa;
}

.push-settings-button:disabled,
.push-test-button:disabled {
  cursor: wait;
  opacity: .62;
}

.push-settings-message {
  min-height: 18px;
  margin: 9px 0 0;
  color: #547895;
  font-size: 12px;
  line-height: 1.45;
}

.push-settings-message[data-tone="error"] {
  color: #b34242;
}

.push-settings-message[data-tone="ok"] {
  color: #247550;
}

.push-help-dialog {
  width: min(430px, calc(100% - 30px));
  margin: auto;
  border: 0;
  border-radius: 14px;
  background: #fafdff;
  box-shadow: 0 22px 70px #163b5d38;
}

.push-help-dialog::backdrop {
  background: #0c345966;
  backdrop-filter: blur(2px);
}

.push-help-panel {
  padding: 22px;
}

.push-help-copy {
  margin: 10px 0 14px;
  color: #547895;
  line-height: 1.6;
}

.push-help-steps {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.push-help-step {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 8px;
  background: #edf7ff;
  color: #365974;
  line-height: 1.5;
}

.push-help-step span {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #1769aa;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 540px) {
  .push-settings-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .push-settings-button:first-child {
    grid-column: 1 / -1;
  }
}
