.push-reminder-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  gap: 14px;
  width: min(390px, calc(100% - 32px));
  padding: 18px;
  box-sizing: border-box;
  color: #fff;
  background: linear-gradient(135deg, #340018, #13000d);
  border: 1px solid rgba(255, 0, 98, 0.55);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
  font-family: Arial, sans-serif;
}

.push-reminder-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  font-size: 24px;
  background: rgba(255, 0, 98, 0.14);
  border: 1px solid rgba(255, 0, 98, 0.4);
  border-radius: 50%;
}

.push-reminder-content {
  flex: 1;
}

.push-reminder-content strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.push-reminder-content span {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.5;
}

#enable-reminder {
  width: 100%;
  padding: 11px 16px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(90deg, #bd0047, #ff0066);
  border: 0;
  border-radius: 9px;
}

#enable-reminder:hover {
  filter: brightness(1.1);
}

#enable-reminder:disabled {
  cursor: default;
  opacity: 0.75;
}

#push-status {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

#push-status[data-status="success"] {
  color: #79f2a6;
}

#push-status[data-status="error"] {
  color: #ff8d9e;
}

#push-status[data-status="loading"] {
  color: #ffd479;
}

@media (max-width: 600px) {
  .push-reminder-widget {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }
}