/**
 * css/search/guest-gate.css
 * 权限引导卡片样式。
 */

.guest-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  text-align: center;
  background: var(--color-surface-hover, #fafafa);
  border-radius: 6px;
}
.guest-gate__msg {
  font-size: 15px;
  color: var(--color-text, #374151);
  margin: 0;
}
.guest-gate__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.guest-gate__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--color-border, #d1d5db);
  color: var(--color-text, #374151);
  background: var(--color-surface, #fff);
  transition: background .1s;
}
.guest-gate__btn:hover { background: var(--color-surface-hover, #f5f5f5); }
.guest-gate__btn--primary {
  background: var(--color-primary, #d97706);
  color: #fff;
  border-color: var(--color-primary, #d97706);
}
.guest-gate__btn--primary:hover { background: #b45309; border-color: #b45309; }

[data-theme="dark"] .guest-gate { background: #2a2a3a; }
[data-theme="dark"] .guest-gate__btn { background: #1e1e2e; border-color: #3a3a4a; color: #e5e7eb; }
[data-theme="dark"] .guest-gate__btn:hover { background: #2a2a3a; }
