/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --brand: #c0392b;
  --brand-dark: #96281b;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: #e0e0e0;
  --bg: #f5f5f5;
  --surface: #ffffff;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    "Meiryo",
    sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.page-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
  min-height: 100vh;
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 16px;
}
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 16px;
  color: var(--text-muted);
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 8px;
  text-align: center;
  color: var(--text-muted);
}
.error-state h2 {
  color: var(--text);
  margin: 0;
  font-size: 20px;
}
.error-state p {
  margin: 0;
}
.brand-footer {
  text-align: center;
  padding: 24px 0 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.brand-footer a {
  color: var(--brand);
  font-weight: 600;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn.btn-outline {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
}
.btn.btn-full {
  width: 100%;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
