/* ---- Google account chooser modal (login.html) ---- */
.gchooser-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.gchooser-overlay[hidden] {
  display: none;
}
.gchooser-dialog {
  width: 408px;
  max-width: 92vw;
  background: #fff;
  border-radius: 8px;
  padding: 36px 40px 28px;
  font-family: "Roboto", Arial, sans-serif;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.gchooser-glogo {
  width: 40px;
  height: 40px;
}
.gchooser-header h2 {
  font-size: 24px;
  font-weight: 400;
  color: #202124;
  margin: 14px 0 6px;
}
.gchooser-header p {
  font-size: 15px;
  color: #5f6368;
  margin: 0 0 22px;
}
.gchooser-accounts {
  border-top: 1px solid #e8eaed;
  text-align: left;
}
.gchooser-account {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 8px;
  border: none;
  border-bottom: 1px solid #e8eaed;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
.gchooser-account:hover {
  background: #f7f8f8;
}
.gchooser-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  flex: none;
}
.gchooser-avatar-other {
  background: #fff;
  border: 1px solid #dadce0;
  color: #5f6368;
}
.gchooser-info {
  display: flex;
  flex-direction: column;
}
.gchooser-name {
  font-size: 14px;
  color: #3c4043;
  font-weight: 500;
}
.gchooser-email {
  font-size: 12px;
  color: #5f6368;
}
.gchooser-footnote {
  font-size: 12px;
  color: #5f6368;
  text-align: left;
  margin-top: 18px;
  line-height: 1.5;
}

/* ---- Dashboard (dashboard.html) ---- */
.dash-content {
  max-width: 940px;
  margin: 0 auto;
  padding: 10px 0 40px;
}
.dash-content h2 {
  margin-bottom: 4px;
}
.dash-email {
  color: #5f6368;
  margin-bottom: 24px;
}
.dash-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.dash-card {
  width: 280px;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.dash-card-banner {
  height: 90px;
  background: #001a69;
}
.dash-card-banner.alt1 { background: #4e6a8f; }
.dash-card-banner.alt2 { background: #b8860b; }
.dash-card-body {
  padding: 12px 16px 16px;
}
.dash-card-body h4 {
  margin: 0 0 4px;
  font-size: 16px;
}
.dash-card-body p {
  margin: 0;
  font-size: 13px;
  color: #5f6368;
}
