:root { --history-guest-empty-height: 280px; }
.history-guest-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.history-guest-body {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #fff;
}
.history-guest-empty {
  min-height: var(--history-guest-empty-height);
  padding: 48px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.history-record-empty-body { padding: 12px; background: #fff; }
.history-record-empty { font-size: 14px; line-height: 1.8; }
.history-guest-empty-panel { display: flex; flex-direction: column; align-items: center; }
.history-guest-empty-icon { width: 96px; height: 96px; margin-bottom: 18px; display: inline-flex; align-items: center; justify-content: center; }
.history-guest-empty-icon img { width: 96px; height: 96px; display: block; }
.history-guest-empty-title { color: #24415f; font-size: 18px; font-weight: 800; }
.history-guest-empty-title + .history-guest-login { margin-top: 18px; }
.history-guest-login {
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #1f6fff;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(31,111,255,.12);
  cursor: pointer;
  white-space: nowrap;
  transition: background .16s, border-color .16s, color .16s, transform .16s;
}
.history-guest-login:hover { background: #0f55d9; }
.history-guest-login:active { transform: translateY(1px); }
@media (max-width: 767px) {
  .history-guest-body { border-radius: 13px; }
}
