/* user-dashboard.css */
/* 一般ユーザー（subscriber/customer）用ダッシュボードスタイル */

.user-dashboard {
  padding: 2em;
  font-family: sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

.user-dashboard-divider {
  margin: 1.5em 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.user-dashboard-divider-large {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.user-dashboard-heading {
  margin: 1em 0;
  font-size: 1.5em;
  color: #1f2937;
}

.user-dashboard-button-container {
  text-align: center;
  margin: 1em 0 2em;
}

/* primall-btn 基本スタイル（共通） */
.primall-btn {
  display: inline-block;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.primall-btn:hover {
  opacity: 0.9;
}

/* 購入履歴ボタン */
.primall-btn-purchase-history {
  background-color: #ec4899;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* パスワード変更ボタン */
.primall-btn-password {
  background-color: #3b82f6;
  margin: 0.3em;
}

/* エージェント申請ボタン */
.primall-btn-agent {
  background-color: #10b981;
  margin: 0.3em;
}

/* ログアウトボタン */
.primall-btn-logout {
  background-color: #64748b;
}

/* 退会リンク */
.user-dashboard-delete-link {
  color: #dc2626;
  text-decoration: underline;
  font-size: 0.9em;
}

.user-dashboard-delete-link:hover {
  color: #b91c1c;
  text-decoration: none;
}

