.shortnotify-wrap {
  max-width: 980px;
}

.shortnotify-intro {
  font-size: 14px;
  margin-bottom: 20px;
}

.shortnotify-token-list {
  margin: 0 0 18px;
  line-height: 2;
}

.shortnotify-token-list code {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 2px 8px;
  background: #eef2ff;
  border-radius: 999px;
}

.shortnotify-card {
  background: #fff;
  border: 1px solid #dcdcde;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.shortnotify-status-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.shortnotify-status-header h2 {
  margin: 0 0 6px;
}

.shortnotify-status-header p {
  margin: 0;
  color: #50575e;
}

.shortnotify-feedback {
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-weight: 500;
}

.shortnotify-feedback-success {
  background: #ecfdf3;
  color: #027a48;
}

.shortnotify-feedback-error {
  background: #fef3f2;
  color: #b42318;
}

.shortnotify-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.shortnotify-template-list {
  display: grid;
  gap: 16px;
}

.shortnotify-template-card {
  border: 1px solid #eaecf0;
  border-radius: 12px;
  padding: 16px;
  background: #fcfcfd;
}

.shortnotify-template-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.shortnotify-template-header h3 {
  margin: 0;
}

.shortnotify-template-textarea {
  width: 100%;
}

.shortnotify-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.shortnotify-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.shortnotify-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #cbd5e1;
  border-radius: 999px;
  transition: 0.2s ease;
}

.shortnotify-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.shortnotify-switch input:checked + .shortnotify-slider {
  background: #2563eb;
}

.shortnotify-switch input:checked + .shortnotify-slider::before {
  transform: translateX(22px);
}

.shortnotify-status-item {
  border: 1px solid #eaecf0;
  border-radius: 10px;
  padding: 14px;
  background: #fcfcfd;
}

.shortnotify-label {
  display: block;
  color: #667085;
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
