/* SIGNÉ admin push panel — embedded in Nuxt admin layout */
.signe-push-root--embedded {
  padding: 0;
  min-height: auto;
  background: transparent;
  font-family: inherit;
  color: inherit;
}
.signe-push-root:not(.signe-push-root--embedded) {
  padding: 20px 24px 32px;
  min-height: calc(100vh - 80px);
  background: #f7f4ef;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  color: #1a1a1a;
}
.signe-push-root * { box-sizing: border-box; }
.signe-push-page .signe-push-search {
  flex: 1;
  min-width: 220px;
  padding: 10px 14px;
  border: 1px solid #e8e4de;
  border-radius: 10px;
}
.signe-push-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
}
.signe-push-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.signe-push-tab {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #e8e4de;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}
.signe-push-tab.active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.signe-push-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.signe-push-search {
  flex: 1;
  min-width: 220px;
}
.signe-push-card,
.signe-push-root--embedded .card table {
  width: 100%;
  border-collapse: collapse;
}
.signe-push-root--embedded .card th,
.signe-push-root--embedded .card td,
.signe-push-card th,
.signe-push-card td {
  padding: 12px 14px;
  border-bottom: 1px solid #e8e4de;
  text-align: right;
  vertical-align: top;
}
.signe-push-root--embedded .card th,
.signe-push-card th {
  background: #faf8f5;
  font-size: 13px;
  color: #6b6b6b;
  white-space: nowrap;
}
.signe-push-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}
.signe-push-btn-primary { background: #1a1a1a; color: #fff; }
.signe-push-btn-gold { background: #b8955a; color: #fff; }
.signe-push-btn-outline { background: #fff; border: 1px solid #e8e4de; color: #1a1a1a; }
.signe-push-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.signe-push-card {
  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.signe-push-card table { width: 100%; border-collapse: collapse; }
.signe-push-card th,
.signe-push-card td {
  padding: 12px 14px;
  border-bottom: 1px solid #e8e4de;
  text-align: right;
  vertical-align: top;
}
.signe-push-card th {
  background: #faf8f5;
  font-size: 13px;
  color: #6b6b6b;
  white-space: nowrap;
}
.signe-push-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.signe-push-badge.ok { background: #e8f5e9; color: #2e7d32; }
.signe-push-badge.warn { background: #fff3e0; color: #c77800; }
.signe-push-badge.info { background: #e3f2fd; color: #1565c0; }

.signe-push-alert {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #fff3e0;
  border: 1px solid #f0c36d;
  color: #7a4d00;
  line-height: 1.6;
}
.signe-push-alert pre {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 12px;
}
.signe-push-fcm {
  font-size: 11px;
  color: #6b6b6b;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}
.signe-push-input {
  width: 100%;
  min-width: 140px;
  padding: 8px 10px;
  border: 1px solid #e8e4de;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}
.signe-push-empty { padding: 40px; text-align: center; color: #6b6b6b; }
.signe-push-pagination {
  display: flex;
  gap: 8px;
  padding: 14px;
  justify-content: center;
  align-items: center;
}
.signe-push-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
}
.signe-push-overlay.open { display: flex; }
.signe-push-dialog {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  max-height: 90vh;
  overflow: auto;
}
.signe-push-dialog.wide { width: min(920px, 100%); }
.signe-push-dialog h3 { margin: 0 0 14px; }
.signe-push-field { margin-bottom: 12px; }
.signe-push-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #6b6b6b;
}
.signe-push-field input,
.signe-push-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e8e4de;
  border-radius: 10px;
}
.signe-push-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}
.signe-push-status-sent { color: #2e7d32; }
.signe-push-status-failed { color: #c62828; }
.signe-push-status-pending { color: #c77800; }
.signe-push-status-delivered,
.signe-push-status-read { color: #1565c0; }
.signe-push-send-cell { min-width: 220px; }
