#samio-push-panel.samio-push-panel {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid #cfe0d8;
  border-radius: 14px;
  background: #f5faf7;
  color: #173e34;
  box-shadow: 0 4px 16px rgb(15 74 60 / 8%);
  font-family: "Source Sans 3", Inter, system-ui, sans-serif;
  position: relative;
  z-index: 8;
}

.samio-push-panel--on {
  border-color: #9ecbb8;
  background: #eff8f3;
}

.samio-push-panel--denied,
.samio-push-panel--unsupported,
.samio-push-panel--ios {
  border-color: #e7d6ad;
  background: #fffaf0;
}

.samio-push-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0f4a3c;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.samio-push-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  flex: 1;
}

.samio-push-copy strong {
  font-family: "Bricolage Grotesque", Inter, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.samio-push-copy > span:not(.samio-push-feedback):not(.samio-push-summary) {
  color: #4d625b;
  font-size: 14px;
  line-height: 1.35;
}

.samio-push-summary {
  margin-top: 3px;
  color: #0f4a3c;
  font-size: 13px;
}

.samio-push-feedback {
  min-height: 0;
  color: #155e75;
  font-size: 13px;
}

.samio-push-feedback:empty {
  display: none;
}

.samio-push-feedback.is-error {
  color: #b42318;
}

.samio-push-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.samio-push-actions button {
  appearance: none;
  border: 1px solid #0f4a3c;
  border-radius: 9px;
  padding: 9px 12px;
  background: #0f4a3c;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.samio-push-actions .samio-push-disable {
  border-color: #c7d4ce;
  background: transparent;
  color: #315248;
}

.samio-push-actions button:hover {
  filter: brightness(0.94);
}

.samio-push-actions button:focus-visible {
  outline: 3px solid #e55335;
  outline-offset: 2px;
}

.samio-push-badge {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e55335;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}

@media (max-width: 640px) {
  #samio-push-panel.samio-push-panel {
    align-items: flex-start;
    width: calc(100% - 24px);
    margin-top: 10px;
    padding: 11px;
  }

  .samio-push-icon {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .samio-push-copy strong {
    font-size: 14px;
  }

  .samio-push-copy > span:not(.samio-push-feedback):not(.samio-push-summary) {
    font-size: 13px;
  }

  .samio-push-actions {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 6px;
  }

  .samio-push-panel {
    flex-wrap: wrap;
  }

  .samio-push-actions button {
    min-height: 38px;
  }
}
