/* ═══════════════════════════════════════════════════════════════════════════
   Sidecue Dashboard Pages — Page-Specific Styles
   Used by: dashboard.html, sessions.html, knowledge.html, account.html
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════ PAGE HEADER ═══════════════════════ */

.page-header {
  margin-bottom: 2rem;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.page-breadcrumb .material-symbols-rounded {
  font-size: 0.75rem;
}

.page-breadcrumb-current {
  color: var(--accent);
  font-weight: 500;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.page-description {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ═══════════════════════ STATS GRID ═══════════════════════ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-primary {
  background: var(--accent-dim);
  color: var(--accent);
}

.stat-icon-success {
  background: var(--success-dim);
  color: var(--success);
}

.stat-icon-accent {
  background: rgba(124, 92, 232, 0.1);
  color: #7C5CE8;
}

.stat-icon-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

/* ═══════════════════════ TWO COLUMN LAYOUT ═══════════════════════ */

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .two-col-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.col-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ═══════════════════════ CARD SECTIONS ═══════════════════════ */

.card-section {
  padding: 1.25rem;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.card-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.card-title .material-symbols-rounded {
  color: var(--accent);
  font-size: 1.25rem;
}

.card-action {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.15s;
}

.card-action:hover {
  opacity: 0.8;
}

.card-action .material-symbols-rounded {
  font-size: 1rem;
}

/* ═══════════════════════ SESSION LIST ITEMS ═══════════════════════ */

.session-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.session-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: var(--surface-2);
  transition: background 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.session-item:hover {
  background: var(--surface-3);
}

.session-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent-dim);
}

.session-icon .material-symbols-rounded {
  color: var(--accent);
  font-size: 1.125rem;
}

.session-info {
  flex: 1;
  min-width: 0;
}

.session-title {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.session-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.session-cues {
  text-align: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: var(--accent-dim);
}

.session-cues-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

.session-cues-label {
  font-size: 0.625rem;
  color: var(--text-muted);
}

/* ═══════════════════════ SESSIONS PAGE - FULL LIST ═══════════════════════ */

.sessions-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.sessions-filters h2 {
  font-size: 1.125rem;
  font-weight: 700;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.session-row {
  display: block;
  padding: 1.25rem;
  transition: background 0.15s;
  cursor: pointer;
  border-bottom: 1px solid var(--border-default);
  text-decoration: none;
  color: inherit;
}

.session-row:last-child {
  border-bottom: none;
}

.session-row:hover {
  background: var(--surface-2);
}

.session-row-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.session-row-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.session-row-info {
  flex: 1;
  min-width: 0;
}

.session-row-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.session-row-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.session-row-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.session-row-meta .material-symbols-rounded {
  font-size: 0.875rem;
}

.session-row-stats {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .session-row-stats {
    display: flex;
  }
}

.session-row-cues {
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: var(--accent-dim);
}

.session-row-cues-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
}

.session-row-cues-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Platform icon colors */
.platform-meet {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.platform-zoom {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}

.platform-teams {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}

.platform-webex {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}

.platform-default {
  background: var(--surface-3);
  color: var(--text-muted);
}

/* ═══════════════════════ USAGE CARD ═══════════════════════ */

.usage-stats {
  margin-bottom: 1rem;
}

.usage-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.usage-label {
  color: var(--text-muted);
}

.usage-value {
  font-weight: 600;
  color: var(--text-primary);
}

.usage-bar {
  height: 0.5rem;
  background: var(--surface-3);
  border-radius: 0.25rem;
  overflow: hidden;
}

.usage-fill {
  height: 100%;
  border-radius: 0.25rem;
  background: var(--brand-gradient);
  transition: width 0.3s ease;
}

.usage-fill.warn {
  background: #F59E0B;
}

.usage-fill.danger {
  background: #EF4444;
}

.usage-reset {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 0.5rem;
}

/* ═══════════════════════ USE CASES / TIPS ═══════════════════════ */

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--surface-2);
  border-radius: 0.75rem;
}

.tip-item .material-symbols-rounded {
  margin-top: 0.125rem;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tip-title {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.tip-description {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ═══════════════════════ EMPTY STATES ═══════════════════════ */

.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
}

.empty-state-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.empty-state-icon .material-symbols-rounded {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.empty-state-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.empty-state-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 20rem;
  margin: 0 auto 1rem;
}

/* ═══════════════════════ KNOWLEDGE PAGE ═══════════════════════ */

.knowledge-usage {
  margin-bottom: 1.5rem;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .knowledge-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.context-textarea {
  min-height: 300px;
  resize: vertical;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.file-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border: 2px dashed var(--border-default);
  border-radius: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

.file-drop-zone .material-symbols-rounded {
  font-size: 1.5rem;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--surface-1);
  border: 1px solid var(--border-default);
  border-radius: 0.5rem;
}

.file-item-icon {
  color: var(--accent);
}

.file-item-name {
  flex: 1;
  font-weight: 500;
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-item-size {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.file-item-remove {
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.file-item-remove:hover {
  background: var(--danger-dim);
  color: var(--danger);
}

/* ═══════════════════════ SESSION DETAIL PAGE ═══════════════════════ */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.15s;
}

.back-link:hover {
  color: var(--accent);
}

.back-link .material-symbols-rounded {
  font-size: 1.25rem;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  gap: 1rem;
}

.session-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.session-detail-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.session-detail-icon .material-symbols-rounded {
  font-size: 2rem;
}

.session-detail-info {
  flex: 1;
}

.session-detail-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.session-stats-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.session-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--surface-1);
  border: 1px solid var(--border-default);
  border-radius: 0.75rem;
  flex: 1;
  min-width: 140px;
}

.session-stat .material-symbols-rounded {
  font-size: 1.5rem;
  color: var(--accent);
}

.session-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.session-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.session-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-default);
  padding-bottom: 0;
}

.session-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.15s;
}

.session-tab:hover {
  color: var(--text-primary);
}

.session-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.session-tab .material-symbols-rounded {
  font-size: 1.125rem;
}

.session-tab-content {
  display: none;
}

.session-tab-content.active {
  display: block;
}

/* Cues List */
.cues-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cue-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface-1);
  border: 1px solid var(--border-default);
  border-radius: 0.75rem;
}

.cue-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.cue-content {
  flex: 1;
}

.cue-question {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.cue-answer {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.cue-item.placeholder-notice {
  background: var(--surface-2);
  border-style: dashed;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.cue-item.placeholder-notice .material-symbols-rounded {
  color: var(--text-muted);
}

.cue-item.placeholder-notice p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* Transcript */
.transcript-content {
  background: var(--surface-1);
  border: 1px solid var(--border-default);
  border-radius: 0.75rem;
  padding: 1.25rem;
  max-height: 500px;
  overflow-y: auto;
}

.transcript-line {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.transcript-line:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.transcript-speaker {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}

.speaker-user {
  background: var(--success-dim);
  color: var(--success);
}

.speaker-other {
  background: var(--accent-dim);
  color: var(--accent);
}

.transcript-text {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* ═══════════════════════ ACCOUNT PAGE — REDESIGNED ═══════════════════════ */

.account-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .account-grid {
    grid-template-columns: 1fr 320px;
    align-items: stretch;
  }
}

.account-col-main,
.account-col-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Left column: Plan & Usage card stretches to fill full height */
.account-col-main {
  height: 100%;
}

.account-col-main .account-section-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Push upgrade CTA / manage buttons to the bottom of the card */
.account-col-main .upgrade-cta,
.account-col-main .manage-btns {
  margin-top: auto;
}

.account-section-card {
  padding: 1.5rem;
}

.account-section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.account-section-header .material-symbols-rounded {
  font-size: 1.125rem;
  color: var(--accent);
}

/* Plan row */
.plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.plan-info {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.plan-info-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent-dim);
  color: var(--accent);
}

.plan-info-icon .material-symbols-rounded {
  font-size: 1.375rem;
}

.plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.plan-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.billing-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.billing-cell {
  text-align: right;
}

.billing-cell-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.billing-cell-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Usage block */
.usage-block {
  margin-bottom: 1rem; /* spacing below bar, before quota warning or CTA */
}

.usage-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.usage-block-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.usage-block-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.usage-reset-hint {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 0.375rem;
}

/* Quota warning */
.quota-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.625rem;
  background: var(--danger-dim);
  color: var(--danger);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.quota-warning .material-symbols-rounded {
  font-size: 1rem;
}

/* Upgrade CTA */
.upgrade-cta {
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.9375rem;
}

.manage-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.75rem;
}

/* Security rows */
.security-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.security-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border-radius: 0.75rem;
}

.security-row-icon {
  font-size: 1.25rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.security-row-info {
  flex: 1;
  min-width: 0;
}

.security-row-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.security-row-value {
  font-size: 0.8125rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.125rem;
}

.btn-sm-action {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

/* Account action buttons */
.account-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.account-action-btn {
  width: 100%;
  justify-content: flex-start;
}

.account-action-danger {
  color: var(--danger);
  border: 1px solid var(--danger-dim);
  background: transparent;
}

.account-action-danger:hover {
  background: var(--danger-dim);
  border-color: var(--danger);
}

/* ═══════════════════════ ACCOUNT PAGE — LEGACY ═══════════════════════ */

.auth-container {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.auth-card {
  max-width: 28rem;
  width: 100%;
  padding: 2rem;
}

.auth-logo {
  height: 3rem;
  margin: 0 auto 1.5rem;
  display: block;
}

.auth-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-default);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.auth-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.auth-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Profile section */
.profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}

.profile-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar .material-symbols-rounded {
  font-size: 2rem;
  color: var(--text-muted);
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-name {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.profile-email {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Subscription section */
.subscription-card {
  padding: 1.25rem;
}

.subscription-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.subscription-tier {
  font-weight: 700;
  font-size: 1.125rem;
}

.subscription-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
