:root {
  --bg: #f5efe2;
  --bg-accent: #eadcc4;
  --card: rgba(255, 252, 246, 0.82);
  --card-strong: rgba(255, 248, 237, 0.95);
  --text: #1d1a16;
  --muted: #665f56;
  --line: rgba(45, 34, 21, 0.12);
  --brand: #c55b2d;
  --brand-dark: #8f3514;
  --success: #1f7a4b;
  --warning: #9b6515;
  --error: #9e2a2b;
  --shadow: 0 24px 60px rgba(69, 42, 20, 0.14);
  --auth-bg: #1f1d31;
  --auth-bg-deep: #171625;
  --auth-card: #11111b;
  --auth-surface: #323247;
  --auth-line: rgba(199, 189, 255, 0.08);
  --auth-text: #f5f7ff;
  --auth-muted: #96a0c0;
  --auth-brand: #c6a2ff;
  --auth-brand-strong: #b287f7;
  --auth-shadow: 0 30px 80px rgba(8, 8, 16, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 91, 45, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(64, 113, 81, 0.16), transparent 26%),
    linear-gradient(135deg, var(--bg), #f9f5ec 45%, var(--bg-accent));
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.panel-shell-wide {
  width: calc(100vw - 24px);
  max-width: none;
  margin: 0 12px 0 0;
  padding-left: 0;
}

.auth-shell {
  width: min(100vw - 24px, 1120px);
  min-height: 100vh;
  display: grid;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0 28px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ghost-button {
  background: transparent;
  border-color: var(--line);
}

.primary-button {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff8f0;
  box-shadow: 0 12px 28px rgba(143, 53, 20, 0.24);
}

.ghost-button:hover,
.primary-button:hover {
  transform: translateY(-1px);
}

.flash-stack {
  position: fixed;
  top: 28px;
  left: 50%;
  z-index: 1000;
  display: grid;
  gap: 12px;
  width: min(460px, calc(100vw - 32px));
  transform: translateX(-50%);
  pointer-events: none;
}

.flash {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card-strong);
  box-shadow: 0 18px 40px rgba(17, 17, 27, 0.22);
  animation: flash-pop-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: top center;
  pointer-events: auto;
}

.flash-hiding {
  animation: flash-pop-out 260ms cubic-bezier(0.4, 0, 1, 1) forwards;
}

.auth-page {
  color: var(--auth-text);
  background:
    radial-gradient(circle at top center, rgba(198, 162, 255, 0.08), transparent 22%),
    linear-gradient(180deg, var(--auth-bg), var(--auth-bg-deep));
}

.panel-page {
  color: var(--auth-text);
  background:
    radial-gradient(circle at top left, rgba(198, 162, 255, 0.08), transparent 18%),
    radial-gradient(circle at bottom right, rgba(115, 120, 255, 0.07), transparent 24%),
    linear-gradient(180deg, var(--auth-bg), var(--auth-bg-deep));
}

.panel-page .site-header {
  padding: 18px 0 28px;
}

.panel-page .brand,
.panel-page .site-nav a {
  color: var(--auth-text);
}

.panel-page .ghost-button {
  color: var(--auth-text);
  border-color: var(--auth-line);
  background: rgba(17, 17, 27, 0.72);
}

.panel-page .flash {
  color: var(--auth-text);
  background: rgba(17, 17, 27, 0.94);
  border-color: var(--auth-line);
  box-shadow: var(--auth-shadow);
}

.auth-page .flash-stack {
  width: min(460px, calc(100vw - 32px));
}

.auth-page .flash {
  color: var(--auth-text);
  background: rgba(17, 17, 27, 0.94);
  border-color: var(--auth-line);
  box-shadow: var(--auth-shadow);
}

.auth-page .flash-success {
  border-color: rgba(93, 227, 159, 0.18);
}

.auth-page .flash-warning {
  border-color: rgba(255, 209, 102, 0.18);
}

.auth-page .flash-error {
  border-color: rgba(255, 120, 120, 0.18);
}

.flash-success {
  border-color: rgba(31, 122, 75, 0.22);
}

.flash-warning {
  border-color: rgba(155, 101, 21, 0.22);
}

.flash-error {
  border-color: rgba(158, 42, 43, 0.22);
}

@keyframes flash-pop-in {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flash-pop-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.panel,
.profile-panel,
.summary-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 38px;
}

.hero-card {
  padding: 22px;
  display: flex;
}

.card-panel {
  width: 100%;
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.96), rgba(250, 237, 214, 0.92)),
    var(--card-strong);
  border: 1px solid rgba(197, 91, 45, 0.12);
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.lede,
.muted,
.panel p,
.card-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 28px 0;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px 0 56px;
}

.login-card {
  width: min(576px, 100%);
  padding: 42px 48px 40px;
  border: 1px solid var(--auth-line);
  border-radius: 16px;
  background: rgba(17, 17, 27, 0.98);
  box-shadow: var(--auth-shadow);
  text-align: center;
}

.login-button {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  background: linear-gradient(135deg, var(--auth-brand), var(--auth-brand-strong));
  color: #171625;
  font-weight: 700;
  box-shadow: none;
}

.auth-page .eyebrow {
  color: #5d6789;
  margin-bottom: 14px;
}

.auth-page h1 {
  color: var(--auth-text);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.auth-page .lede {
  color: var(--auth-muted);
  max-width: 28rem;
  margin: 0 auto;
}

.auth-page .status-pill {
  background: rgba(50, 50, 71, 0.82);
  color: var(--auth-text);
}

.auth-page .primary-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.status-pill,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(29, 26, 22, 0.06);
  color: var(--text);
  font-size: 0.92rem;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel-page .dashboard-grid,
.panel-page .server-shell {
  align-items: start;
}

.profile-panel,
.summary-panel,
.panel {
  padding: 24px;
}

.profile-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.panel-page .profile-panel,
.panel-page .summary-panel,
.panel-page .panel {
  border: 1px solid var(--auth-line);
  background: rgba(17, 17, 27, 0.94);
  box-shadow: var(--auth-shadow);
}

.panel-page .eyebrow {
  color: #7e88ab;
}

.panel-page h1,
.panel-page h2 {
  color: var(--auth-text);
}

.panel-page .muted,
.panel-page .panel p {
  color: var(--auth-muted);
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  object-fit: cover;
}

.avatar-fallback {
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  background: rgba(197, 91, 45, 0.15);
}

.summary-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-card {
  border-radius: 24px;
  padding: 22px;
  background: var(--card-strong);
  border: 1px solid var(--line);
}

.panel-page .metric-card {
  background: rgba(50, 50, 71, 0.52);
  border-color: var(--auth-line);
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.metric-label {
  color: var(--muted);
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-field {
  display: block;
  margin: 0 0 14px;
}

.search-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.56);
  color: inherit;
  outline: none;
}

.search-input::placeholder {
  color: var(--muted);
}

.search-input:focus {
  border-color: rgba(197, 91, 45, 0.4);
  box-shadow: 0 0 0 3px rgba(197, 91, 45, 0.12);
}

.guild-list {
  display: grid;
  gap: 12px;
}

.guild-scroll-wrap {
  max-height: 430px;
  overflow-y: auto;
  padding-right: 6px;
}

.guild-scroll-wrap::-webkit-scrollbar {
  width: 10px;
}

.guild-scroll-wrap::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(127, 127, 160, 0.45);
}

.guild-empty-state {
  margin-top: 4px;
}

.guild-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
}

.guild-row-action {
  align-items: center;
}

.guild-row-copy {
  display: grid;
  gap: 8px;
}

.guild-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-note {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.small-button {
  padding: 0.7rem 1rem;
  white-space: nowrap;
}

.panel-page .guild-row {
  background: rgba(31, 31, 46, 0.88);
  border-color: var(--auth-line);
}

.panel-page .search-input {
  border-color: var(--auth-line);
  background: rgba(50, 50, 71, 0.56);
  color: var(--auth-text);
}

.panel-page .search-input::placeholder {
  color: var(--auth-muted);
}

.panel-page .search-input:focus {
  border-color: rgba(198, 162, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(198, 162, 255, 0.12);
}

.panel-page .guild-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(198, 162, 255, 0.32);
}

.panel-page .tag {
  background: rgba(198, 162, 255, 0.12);
  color: #dfd4ff;
}

.panel-page .primary-button {
  background: linear-gradient(135deg, var(--auth-brand), var(--auth-brand-strong));
  color: #171625;
  box-shadow: none;
}

.dark-ghost-button {
  color: var(--auth-text);
  border-color: var(--auth-line);
  background: rgba(50, 50, 71, 0.36);
}

.page-title-panel {
  max-width: 860px;
}

.module-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.module-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
  padding: 18px;
  margin-left: 0;
}

.module-sidebar-header h2 {
  margin: 0;
  font-size: 1.3rem;
}

.module-nav {
  display: grid;
  gap: 18px;
}

.module-group {
  display: grid;
  gap: 10px;
}

.module-group-label {
  margin: 0;
  padding: 0 4px;
  color: var(--auth-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.module-group-links {
  display: grid;
  gap: 10px;
}

.module-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--auth-line);
  background: rgba(31, 31, 46, 0.76);
  color: var(--auth-text);
  text-align: left;
  cursor: pointer;
}

.module-link-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.module-link-title {
  font-weight: 700;
}

.module-link-meta {
  color: var(--auth-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.module-link-active {
  border-color: rgba(198, 162, 255, 0.36);
  background: rgba(50, 50, 71, 0.88);
  box-shadow: inset 0 0 0 1px rgba(198, 162, 255, 0.08);
}

.module-link-disabled {
  opacity: 0.52;
}

.module-link-disabled-active {
  opacity: 0.82;
}

.module-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.module-link-pill-on {
  background: rgba(93, 227, 159, 0.14);
  color: #9ef0c3;
}

.module-link-pill-off {
  background: rgba(150, 160, 192, 0.12);
  color: #c1c7dc;
}

.module-sidebar-footer {
  padding-top: 6px;
}

.module-content {
  display: grid;
  gap: 22px;
}

.module-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.module-hero-copy {
  min-width: 0;
}

.module-hero-copy h1 {
  margin-bottom: 12px;
}

.module-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.panel-span-full {
  grid-column: 1 / -1;
}

.feature-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.feature-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.feature-status-on {
  background: rgba(93, 227, 159, 0.14);
  color: #9ef0c3;
}

.feature-status-off {
  background: rgba(255, 120, 120, 0.12);
  color: #ffb3b3;
}

.server-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.form-control {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--auth-line);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(50, 50, 71, 0.56);
  color: var(--auth-text);
  outline: none;
}

.form-control:focus {
  border-color: rgba(198, 162, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(198, 162, 255, 0.12);
}

.form-control-textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.schedule-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.scheduler-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.9fr);
  gap: 22px;
}

.scheduler-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--auth-line);
  background: rgba(24, 24, 36, 0.84);
}

.scheduler-card-header {
  display: grid;
  gap: 8px;
}

.scheduler-card-header h3 {
  margin: 0;
  font-size: 1.12rem;
}

.segmented-control {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(16, 17, 26, 0.9);
  width: fit-content;
}

.segmented-control-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--auth-muted);
  font-weight: 700;
  cursor: pointer;
}

.segmented-control-button-active {
  border-color: rgba(198, 162, 255, 0.26);
  background: rgba(57, 61, 84, 0.92);
  color: var(--auth-text);
}

.weekday-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.weekday-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid var(--auth-line);
  background: rgba(31, 31, 46, 0.82);
  color: var(--auth-text);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.weekday-option input {
  accent-color: #c6a2ff;
}

.schedule-mode-panel {
  display: grid;
  gap: 10px;
}

.specific-times-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--auth-line);
  background: rgba(18, 18, 27, 0.72);
}

.specific-times-panel {
  display: grid;
  gap: 12px;
}

.specific-times-panel-hidden {
  display: none;
}

.specific-timezone-pill {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--auth-line);
  background: rgba(31, 31, 46, 0.82);
  color: var(--auth-muted);
}

.specific-multiple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.interval-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--auth-line);
  background: rgba(18, 18, 27, 0.72);
}

.interval-time-row {
  display: grid;
  gap: 10px;
}

.interval-time-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--auth-text);
  font-weight: 600;
}

.interval-time-builder {
  max-width: 520px;
}

.interval-time-builder-disabled {
  opacity: 0.45;
}

.time-builder {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) minmax(92px, 1fr) minmax(120px, 0.9fr) auto;
  gap: 10px;
  align-items: stretch;
}

.time-builder-compact {
  grid-template-columns: minmax(92px, 1fr) minmax(92px, 1fr) minmax(120px, 0.9fr);
}

.schedule-mode-panel-hidden {
  display: none;
}

.inline-note {
  margin: -4px 0 0;
  font-size: 0.85rem;
}

.message-mode-panel {
  display: grid;
  gap: 14px;
}

.message-mode-panel-hidden {
  display: none;
}

.embed-fields-grid {
  display: grid;
  gap: 10px;
}

.embed-fields-label {
  margin: 0;
}

.embed-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.embed-preview {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--auth-line);
  background: rgba(13, 14, 22, 0.92);
}

.embed-preview-bar {
  background: #57F287;
}

.embed-preview-copy {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.embed-preview-author,
.embed-preview-title,
.embed-preview-description,
.embed-preview-footer {
  margin: 0;
}

.embed-preview-author {
  font-size: 0.88rem;
  color: #d7d9e8;
}

.embed-preview-title {
  font-weight: 800;
  color: #ffffff;
}

.embed-preview-description {
  color: var(--auth-muted);
  white-space: pre-wrap;
}

.embed-preview-footer {
  font-size: 0.82rem;
  color: #a8adc2;
}

.server-rule-list {
  display: grid;
  gap: 14px;
}

.server-rule-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--auth-line);
  background: rgba(31, 31, 46, 0.88);
}

.server-rule-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.server-rule-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.server-rule-trigger {
  margin: 0;
  font-weight: 700;
  color: var(--auth-text);
  word-break: break-word;
}

.server-rule-response {
  margin: 0;
  color: var(--auth-muted);
  white-space: pre-wrap;
  word-break: break-word;
}

.server-rule-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tag-success {
  background: rgba(93, 227, 159, 0.14) !important;
  color: #9ef0c3 !important;
}

.tag-muted {
  background: rgba(150, 160, 192, 0.12) !important;
  color: #c1c7dc !important;
}

.danger-ghost-button {
  color: #ffb3b3;
  border-color: rgba(255, 120, 120, 0.18);
  background: rgba(255, 120, 120, 0.08);
}

@media (max-width: 860px) {
  .hero,
  .dashboard-grid,
  .server-grid,
  .module-layout {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    grid-template-columns: 1fr;
  }

  .page-shell {
    width: min(100vw - 24px, 1120px);
  }

  .login-card {
    padding: 34px 24px 28px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .profile-panel,
  .summary-panel {
    border-radius: 24px;
  }

  .module-sidebar {
    position: static;
  }

  .schedule-form-grid,
  .weekday-grid,
  .scheduler-shell,
  .specific-multiple-grid,
  .embed-field-row {
    grid-template-columns: 1fr;
  }

  .time-builder,
  .time-builder-compact {
    grid-template-columns: 1fr;
  }

  .panel-shell-wide {
    width: min(100vw - 16px, 100vw);
    margin: 0 8px;
  }
}
