:root {
  color-scheme: dark;
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.4;
  --bg: #070910;
  --bg-card: rgba(19, 23, 37, 0.85);
  --bg-card-solid: #121528;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f7f8fb;
  --muted: #b2b7c8;
  --accent: #ff4d7a;
  --accent-strong: #ff7c44;
  --radius: 18px;
  --shadow: 0 30px 60px rgba(1, 5, 15, 0.45);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #1e2361, #070910 60%);
  color: var(--text);
}

[hidden] {
  display: none !important;
}

.app-page {
  display: none;
  width: 100%;
}

.app-page.is-active {
  display: block;
}

.page {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 32px clamp(16px, 4vw, 48px) 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 12px clamp(16px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(7, 9, 16, 0.95), rgba(7, 9, 16, 0));
  backdrop-filter: blur(10px);
}

.site-header__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-header__logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.site-header__tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-header__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header__links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.site-header__links a:hover,
.site-header__links a:focus-visible {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.4);
}

.site-header__links a.is-active {
  color: var(--text);
  border-color: var(--accent);
}

.site-header__auth {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__topline {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.session-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.session-controls .btn {
  white-space: nowrap;
}

.session-user {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px 6px 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.session-user__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.session-user__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.session-user__label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.session-user strong {
  font-size: 0.95rem;
}

.hero__card {
  backdrop-filter: blur(20px);
  background: linear-gradient(135deg, rgba(17, 21, 47, 0.85), rgba(11, 12, 23, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero__card h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.bot-status-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bot-status-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.status-indicator.online {
  background: #58f2a6;
  border-color: rgba(88, 242, 166, 0.4);
  box-shadow: 0 0 15px rgba(88, 242, 166, 0.6);
}

.status-indicator.offline {
  background: #ff4d7a;
  border-color: rgba(255, 77, 122, 0.4);
  box-shadow: 0 0 15px rgba(255, 77, 122, 0.6);
}

.status-indicator.neutral {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.status-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.bot-status-stats {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bot-status-stats li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.bot-status-stats li strong {
  color: var(--text);
}

.hero__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
}

.hero__card li strong {
  color: var(--text);
  font-size: 1.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-strong);
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 15px 30px rgba(255, 77, 122, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:not(:disabled):hover {
  transform: translateY(-1px);
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 6px 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.bot-info-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.bot-info-card__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bot-info-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bot-info-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.bot-info-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.bot-info-features article {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.bot-info-features h3 {
  margin: 0 0 6px;
}

.bot-info-features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dashboard-panel.details-only {
  display: block;
}

.dashboard-panel__list,
.dashboard-panel__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-panel__details {
  min-height: 420px;
}

.dashboard-panel__details[hidden] {
  display: none !important;
}

.dashboard-panel.details-only .dashboard-panel__details {
  min-height: auto;
}

.dashboard-panel__list header {
  margin-bottom: 8px;
}

.dashboard-panel__list .guild-list {
  margin-top: 0;
}

.details-card {
  flex: 1;
  background: var(--bg-card-solid);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.details-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.details-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.btn.subtle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.panel-hint {
  margin: 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.guild-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.guild-card {
  background: var(--bg-card-solid);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guild-card h3 {
  margin: 0;
  font-size: 1rem;
}

.guild-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.pill {
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.pill.online {
  background: rgba(88, 242, 166, 0.15);
  color: #58f2a6;
}

.pill.offline {
  background: rgba(255, 77, 122, 0.15);
  color: var(--accent);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 28px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

select {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  font-size: 1rem;
}

textarea {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  font-size: 1rem;
  resize: vertical;
}

.hint {
  color: var(--muted);
  font-size: 0.85rem;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--border);
}

.stats-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.stats-list li strong {
  color: var(--text);
}

#status-area {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(18, 21, 38, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.toast.success {
  border-color: rgba(88, 242, 166, 0.5);
}

.toast.error {
  border-color: rgba(255, 77, 122, 0.6);
}

.quest-browser {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quest-browser__header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.quest-search-panel {
  display: flex;
  justify-content: center;
  padding: 8px 0 0;
}

.quest-search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.quest-search-form .form-label {
  text-align: center;
  color: var(--muted);
}

.quest-search-field {
  width: min(520px, 100%);
  position: relative;
}

.quest-search-field input {
  width: 100%;
  text-align: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.05rem;
}

.quest-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 24px));
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.quest-suggestions li {
  margin: 0;
  padding: 0;
}

.quest-suggestions button {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.quest-suggestions button:hover,
.quest-suggestions button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.quest-search-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.quest-list-panel {
  background: var(--bg-card-solid);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quest-list-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.quest-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.quest-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.quest-list--grid p {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
}

.quest-list--grid button {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.quest-list--grid button:hover,
.quest-list--grid button:focus-visible {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  outline: none;
}

.quest-list--grid button .quest-list__title {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.quest-list--grid button .quest-list__meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.quest-browser__details {
  background: var(--bg-card-solid);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.changelog-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.changelog-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.changelog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.changelog-entry {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.changelog-entry__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.changelog-entry__version {
  font-size: 1.05rem;
  font-weight: 600;
}

.changelog-entry__meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.changelog-entry__body {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.4;
}

.changelog-form {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.event-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.event-card__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
.event-window {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  
.event-window__time {
    font-weight: 700;
    letter-spacing: 0.01em;
  }
  
.event-window__countdown {
    color: #b7f5c5;
    background: rgba(71, 186, 120, 0.12);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
  }
  
  .event-now,
  .event-upcoming {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-now h3,
.event-upcoming h3 {
  margin: 0;
}

.event-now p,
  .event-upcoming p {
    margin: 0;
  }
  
.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }
  
.event-list__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
  }
  
.event-list__title {
    font-weight: 600;
  }
  
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(46, 204, 113, 0.1);
    color: #9ef2b3;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
  }
  
.live-indicator__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.48);
    animation: live-pulse 2s infinite;
  }
  
.live-indicator__label {
    line-height: 1;
  }
  
@keyframes live-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.48);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
  }
  
  .event-upcoming__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .event-upcoming__item {
      padding: 10px 12px;
      border-left: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.02);
    }
    
    .event-upcoming__item strong {
      display: block;
      margin-bottom: 4px;
    }
    
    .event-upcoming__meta {
      display: block;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 6px;
    }

.quest-details__content header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.quest-description {
  margin: 0;
  color: var(--muted);
}

.quest-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.quest-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.quest-objectives {
  list-style: disc;
  margin: 8px 0 0 18px;
  padding: 0;
  color: var(--text);
}

.quest-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.quest-images img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  height: 110px;
}

.quest-images a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.quest-correction {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.correction-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.correction-list li {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.correction-list .actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.status {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status.pending {
  color: #ffc857;
}

.status.approved {
  color: #58f2a6;
}

.status.rejected {
  color: var(--accent);
}

.admin-corrections {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-corrections__controls {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.admin-corrections__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-correction {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-correction__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-correction__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-correction__message {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  margin: 4px 0;
}

.admin-correction__image img {
  max-height: 140px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .card {
    padding: 20px;
  }

  .site-header__inner {
    position: static;
    flex-direction: column;
    gap: 12px;
  }

  .site-header__auth {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__card {
    order: -1;
  }

  .hero__topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .session-controls {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }

  .session-user {
    width: 100%;
    justify-content: space-between;
  }

  .dashboard-panel.has-details {
    grid-template-columns: 1fr;
  }

  .dashboard-panel__details {
    min-height: auto;
  }
}
