:root {
  --bg: #050505;
  --panel: #111111;
  --text: #f5f5f5;
  --muted: #a7a7a7;
  --line: #2a2a2a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, sans-serif;
}

.site-header {
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.site-logo,
.site-link,
.google-button {
  color: inherit;
  text-decoration: none;
}

.site-logo {
  font-weight: 700;
}

.site-link {
  font-size: 14px;
}

.auth-page,
.business-page,
.error-page {
  min-height: calc(100vh - 60px);
}

.min-vh-content {
  min-height: calc(100vh - 60px);
}

.google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font-weight: 700;
}

.google-button__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
}

.muted {
  color: var(--muted);
}
