:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #151821;
  --muted: #697184;
  --line: #dfe5ee;
  --brand: #0d9488;
  --brand-dark: #0f766e;
  --accent: #f59e0b;
  --blue: #2563eb;
  --soft-blue: #eaf2ff;
  --soft-green: #e8f8f5;
  --shadow: 0 24px 70px rgba(20, 28, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 229, 238, 0.82);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner,
.hero-inner,
.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--blue));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.main-nav > ul,
.submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 9px;
  color: #2e3544;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #eef6f6;
  color: var(--brand-dark);
  outline: none;
}

.has-submenu > a::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(21, 24, 33, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.submenu a {
  width: 100%;
  justify-content: flex-start;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ghost-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.user-email {
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.primary-button {
  border: 0;
  padding: 0 18px;
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.26);
}

.primary-button:hover {
  background: var(--brand-dark);
}

.secondary-button {
  padding: 0 18px;
  border: 1px solid var(--line);
  color: #263042;
  background: #ffffff;
}

.full-button {
  width: 100%;
}

.large {
  min-height: 52px;
  padding: 0 24px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(232, 248, 245, 0.92) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(234, 242, 255, 0.95) 100%);
}

.hero-inner {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
  align-items: center;
  gap: 58px;
  padding: 66px 0 48px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(13, 148, 136, 0.24);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(13, 148, 136, 0.08);
  font-size: 13px;
  font-weight: 800;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.hero-stats dt {
  font-size: 23px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-product {
  position: relative;
}

.browser-window {
  overflow: hidden;
  border: 1px solid rgba(151, 163, 184, 0.36);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: rotate(0.6deg);
}

.browser-top {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.browser-top span:nth-child(1) {
  background: #ef4444;
}

.browser-top span:nth-child(2) {
  background: #f59e0b;
}

.browser-top span:nth-child(3) {
  background: #22c55e;
}

.dashboard-preview {
  display: grid;
  min-height: 430px;
  grid-template-columns: 92px 1fr;
  background: linear-gradient(180deg, #f8fafc 0%, #eaf7f5 100%);
}

.dashboard-preview aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: #0f172a;
}

.dashboard-preview aside span {
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.dashboard-preview aside .preview-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.dashboard-preview section {
  padding: 26px;
}

.preview-heading {
  width: 58%;
  height: 22px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #cbd5e1;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-grid article {
  min-height: 118px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
}

.preview-grid strong,
.preview-grid span,
.widget-card strong,
.widget-card span {
  display: block;
}

.preview-grid strong {
  font-size: 13px;
}

.preview-grid span {
  margin-top: 18px;
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
}

.widget-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 70px;
  padding: 22px;
  border: 1px solid rgba(13, 148, 136, 0.28);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(13, 148, 136, 0.16);
}

.widget-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.widget-card button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #101828;
  color: #ffffff;
}

body.is-dashboard .site-footer {
  display: none;
}

.dashboard-view {
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef6f5 100%);
}

.app-shell {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: 286px minmax(0, 1fr);
}

.app-sidebar {
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  padding: 26px 18px;
}

.sidebar-title {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sidebar-nav {
  display: grid;
  gap: 10px;
}

.sidebar-link {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #313847;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  padding: 0 10px;
}

.sidebar-link.is-active {
  background: rgba(13, 148, 136, 0.11);
  color: var(--brand-dark);
}

.sidebar-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--brand);
  font-size: 13px;
}

.sidebar-projects {
  display: grid;
  gap: 6px;
  margin-left: 13px;
  padding: 4px 0 0 20px;
  border-left: 1px solid rgba(13, 148, 136, 0.18);
}

.sidebar-project-link {
  display: grid;
  width: 100%;
  min-height: 42px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #485163;
  cursor: pointer;
  font-weight: 750;
  padding: 8px 10px;
  text-align: left;
}

.sidebar-project-link span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-project-link small {
  color: var(--muted);
  font-size: 12px;
}

.sidebar-project-link:hover,
.sidebar-project-link.is-active {
  background: #ffffff;
  color: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.app-content {
  min-width: 0;
  padding: 40px clamp(22px, 4vw, 56px) 56px;
}

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

.dashboard-top h1 {
  max-width: 720px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.dashboard-top p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.dashboard-metrics div {
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.dashboard-metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1;
}

.projects-layout {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.projects-panel,
.project-detail,
.empty-dashboard,
.project-card,
.widget-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.projects-panel,
.project-detail {
  min-height: 520px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.panel-head,
.project-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-head h2,
.project-detail-head h2 {
  margin: 0;
  font-size: 22px;
}

.panel-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.projects-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.project-card {
  width: 100%;
  padding: 16px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.project-card:hover {
  border-color: rgba(13, 148, 136, 0.32);
  transform: translateY(-1px);
}

.project-card.is-active {
  border-color: rgba(13, 148, 136, 0.46);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.12);
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(255, 255, 255, 0.95));
}

.project-card strong,
.widget-item strong {
  display: block;
  font-size: 16px;
}

.project-card span,
.widget-item span,
.project-site {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.empty-dashboard {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: clamp(24px, 4vw, 44px);
  border-style: dashed;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94));
}

.empty-dashboard h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.12;
}

.empty-dashboard p {
  max-width: 560px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.project-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.project-summary div {
  padding: 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.project-summary strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.project-summary span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.widgets-section {
  margin-top: 26px;
}

.widgets-section h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.widgets-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.widget-item {
  padding: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.widget-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(13, 148, 136, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.auth-modal,
.app-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(8px);
}

.auth-modal[hidden],
.app-modal[hidden],
.auth-form,
.landing-view[hidden],
.dashboard-view[hidden],
.auth-open[hidden],
.user-email[hidden],
.logout-button[hidden] {
  display: none;
}

.auth-panel {
  position: relative;
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
}

.auth-tab {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.is-active {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.auth-form.is-active {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.auth-form h2 {
  margin: 0 0 4px;
  font-size: 28px;
  line-height: 1.15;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #313847;
  font-size: 14px;
  font-weight: 750;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.auth-form input:focus {
  border-color: rgba(13, 148, 136, 0.72);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
  outline: none;
}

.project-form,
.widget-form {
  display: grid;
  gap: 16px;
}

.project-form h2,
.widget-form h2 {
  margin: 0 0 4px;
  font-size: 28px;
  line-height: 1.15;
}

.project-form label {
  display: grid;
  gap: 8px;
  color: #313847;
  font-size: 14px;
  font-weight: 750;
}

.project-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.project-form input:focus {
  border-color: rgba(13, 148, 136, 0.72);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
  outline: none;
}

.widget-choice {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.widget-choice legend {
  margin-bottom: 4px;
  color: #313847;
  font-size: 14px;
  font-weight: 750;
}

.widget-choice label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(13, 148, 136, 0.32);
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.06);
}

.widget-choice input {
  margin-top: 4px;
}

.widget-choice strong,
.widget-choice small {
  display: block;
}

.widget-choice small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-message.is-error {
  color: #b42318;
}

.form-message.is-success {
  color: var(--brand-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding: 46px 0 34px;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: #b8c2d4;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-nav h2 {
  margin: 0 0 14px;
  font-size: 15px;
}

.footer-nav a {
  display: block;
  margin-top: 9px;
  color: #b8c2d4;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8c2d4;
  font-size: 14px;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .main-nav {
    display: none;
    order: 5;
    width: 100%;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav > ul {
    display: grid;
    gap: 8px;
    padding: 0 0 18px;
  }

  .main-nav a {
    width: 100%;
    justify-content: space-between;
    padding: 0 14px;
    background: #f8fafc;
  }

  .submenu {
    position: static;
    display: grid;
    width: auto;
    margin-top: 8px;
    border-radius: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .browser-window {
    transform: none;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }

  .sidebar-title {
    margin-bottom: 10px;
  }

  .sidebar-nav {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    overflow-x: auto;
  }

  .sidebar-link {
    width: auto;
    flex: 0 0 auto;
  }

  .sidebar-projects {
    display: flex;
    flex: 1 0 auto;
    min-width: min(100%, 320px);
    margin: 0;
    padding: 0;
    border-left: 0;
    overflow-x: auto;
  }

  .sidebar-project-link {
    width: 220px;
    flex: 0 0 auto;
  }

  .app-content {
    padding: 28px 18px 46px;
  }

  .projects-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .hero-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .header-actions {
    order: 4;
    width: 100%;
    justify-content: space-between;
  }

  .header-actions .primary-button,
  .header-actions .ghost-link {
    flex: 1;
  }

  .hero-inner {
    min-height: auto;
    padding: 52px 0 38px;
  }

  h1 {
    font-size: clamp(38px, 14vw, 52px);
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .hero-stats,
  .preview-grid,
  .footer-inner,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    grid-template-columns: 62px 1fr;
    min-height: 370px;
  }

  .dashboard-preview aside {
    padding: 16px 10px;
  }

  .dashboard-preview aside span {
    width: 36px;
  }

  .dashboard-preview section {
    padding: 18px;
  }

  .widget-card {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 22px;
  }

  .widget-card button {
    width: 100%;
  }

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

  .dashboard-top {
    flex-direction: column;
  }

  .dashboard-top .secondary-button,
  .dashboard-top .primary-button {
    width: 100%;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .panel-head,
  .project-detail-head {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-head .secondary-button,
  .project-detail-head .primary-button {
    width: 100%;
  }

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

  .projects-panel,
  .project-detail {
    padding: 16px;
  }

  .auth-panel {
    padding: 22px;
  }
}

body.is-dashboard .site-header {
  display: none;
}

body.is-dashboard {
  background: #f3f7f8;
}

body.is-dashboard .dashboard-view {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 6%, rgba(13, 148, 136, 0.14), transparent 28%),
    linear-gradient(135deg, #f8fafc 0%, #eef7f6 100%);
}

body.is-dashboard .app-shell {
  min-height: 100vh;
  grid-template-columns: 292px minmax(0, 1fr);
}

body.is-dashboard .app-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  border-right: 1px solid rgba(203, 213, 225, 0.72);
  background:
    linear-gradient(180deg, #0f172a 0%, #13231f 100%);
  color: #ffffff;
  padding: 22px 16px;
  overflow-y: auto;
}

body.is-dashboard .sidebar-title {
  color: rgba(255, 255, 255, 0.55);
}

body.is-dashboard .sidebar-link {
  color: rgba(255, 255, 255, 0.76);
}

body.is-dashboard .sidebar-link.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

body.is-dashboard .sidebar-icon {
  color: #0f172a;
  background: #5eead4;
}

body.is-dashboard .sidebar-projects {
  border-left-color: rgba(94, 234, 212, 0.22);
}

body.is-dashboard .sidebar-project-link {
  color: rgba(255, 255, 255, 0.74);
}

body.is-dashboard .sidebar-project-link small {
  color: rgba(255, 255, 255, 0.52);
}

body.is-dashboard .sidebar-project-link:hover,
body.is-dashboard .sidebar-project-link.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
}

.sidebar-account {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.sidebar-account > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sidebar-user,
.sidebar-logout {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  font-weight: 800;
}

.sidebar-user {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-logout {
  border: 0;
  color: #0f172a;
  background: #5eead4;
  cursor: pointer;
}

body.is-dashboard .app-content {
  padding: 30px clamp(18px, 3vw, 42px) 42px;
}

body.is-dashboard .dashboard-top {
  align-items: flex-start;
}

body.is-dashboard .dashboard-top .eyebrow {
  margin-bottom: 12px;
}

body.is-dashboard .dashboard-top h1 {
  font-size: clamp(34px, 4vw, 52px);
}

body.is-dashboard .dashboard-top p:not(.eyebrow) {
  max-width: 620px;
  font-size: 16px;
}

body.is-dashboard .dashboard-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

body.is-dashboard .dashboard-metrics div {
  padding: 14px 16px;
  border-color: rgba(203, 213, 225, 0.72);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

body.is-dashboard .dashboard-metrics strong {
  font-size: 24px;
}

.projects-board {
  margin-top: 16px;
}

.board-card {
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.08);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.project-workspace-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.project-workspace-card.is-active {
  border-color: rgba(13, 148, 136, 0.42);
  box-shadow: 0 20px 48px rgba(13, 148, 136, 0.12);
}

.project-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.project-card-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.project-card-head a {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.project-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(13, 148, 136, 0.1);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.project-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.project-mini-stats div {
  padding: 10px;
  border-radius: 10px;
  background: #f1f5f9;
}

.project-mini-stats strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.project-mini-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.project-widgets-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
}

.project-widgets-head strong {
  font-size: 15px;
}

.project-widgets-list {
  display: grid;
  gap: 8px;
}

.compact-widget-card,
.compact-empty-widget {
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
}

.compact-widget-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.compact-widget-card strong,
.compact-widget-card span,
.compact-empty-widget strong,
.compact-empty-widget span {
  display: block;
}

.compact-widget-card strong,
.compact-empty-widget strong {
  font-size: 15px;
}

.compact-widget-card span,
.compact-empty-widget span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.compact-widget-card .widget-badge {
  margin: 0;
}

.compact-empty-widget {
  background: #f8fafc;
}

.project-card-actions {
  display: flex;
  gap: 10px;
}

.project-card-actions .primary-button,
.project-card-actions .secondary-button {
  flex: 1;
}

@media (max-width: 980px) {
  body.is-dashboard .app-shell {
    grid-template-columns: 1fr;
  }

  body.is-dashboard .app-sidebar {
    position: static;
    display: block;
    height: auto;
    padding: 14px;
  }

  body.is-dashboard .sidebar-projects {
    border-left: 0;
  }

  .sidebar-account {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .sidebar-account > span {
    display: none;
  }

  .sidebar-logout {
    width: auto;
    padding: 0 14px;
  }
}

@media (max-width: 720px) {
  body.is-dashboard .app-content {
    padding: 18px 12px 32px;
  }

  body.is-dashboard .dashboard-metrics,
  .project-mini-stats,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .board-card,
  .project-workspace-card {
    padding: 14px;
  }

  .project-card-head,
  .project-widgets-head,
  .project-card-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

body.is-dashboard .dashboard-view {
  background: #f6f8fb;
}

body.is-dashboard .app-shell {
  grid-template-columns: 224px minmax(0, 1fr);
}

body.is-dashboard .app-sidebar {
  background: #ffffff;
  color: var(--ink);
  border-right: 1px solid #e2e8f0;
  box-shadow: 8px 0 28px rgba(15, 23, 42, 0.04);
  padding: 16px 12px;
}

body.is-dashboard .sidebar-title {
  margin-bottom: 10px;
  color: #8a94a6;
  font-size: 11px;
}

body.is-dashboard .sidebar-link {
  min-height: 40px;
  border-radius: 9px;
  color: #445066;
  padding: 0 8px;
  font-size: 14px;
}

body.is-dashboard .sidebar-link.is-active {
  background: #eaf7f5;
  color: var(--brand-dark);
}

body.is-dashboard .sidebar-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--brand);
}

body.is-dashboard .sidebar-projects {
  gap: 5px;
  margin-left: 10px;
  padding: 2px 0 0 14px;
  border-left-color: #d8eeeb;
}

body.is-dashboard .sidebar-project-link {
  min-height: 34px;
  border-radius: 8px;
  color: #566176;
  padding: 6px 8px;
  font-size: 13px;
}

body.is-dashboard .sidebar-project-link small {
  color: #8791a3;
  font-size: 11px;
}

body.is-dashboard .sidebar-project-link:hover,
body.is-dashboard .sidebar-project-link.is-active {
  background: #f4faf9;
  color: var(--brand-dark);
  box-shadow: none;
}

body.is-dashboard .sidebar-account {
  gap: 6px;
  padding-top: 14px;
}

body.is-dashboard .sidebar-account > span {
  color: #8a94a6;
  font-size: 11px;
}

body.is-dashboard .sidebar-user {
  min-height: 36px;
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #566176;
  font-size: 13px;
  padding: 0 10px;
}

body.is-dashboard .sidebar-logout {
  min-height: 38px;
  color: #ffffff;
  background: var(--brand);
  font-size: 14px;
}

body.is-dashboard .app-content {
  padding: 24px clamp(16px, 2.5vw, 34px) 34px;
}

body.is-dashboard .dashboard-top {
  gap: 16px;
}

body.is-dashboard .dashboard-top .eyebrow {
  min-height: 30px;
  margin-bottom: 8px;
  padding: 5px 10px;
  font-size: 12px;
}

body.is-dashboard .dashboard-top h1 {
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1;
}

body.is-dashboard .dashboard-top p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 8px;
  font-size: 15px;
}

body.is-dashboard .dashboard-top .primary-button {
  min-height: 44px;
  border-radius: 10px;
  padding: 0 16px;
  box-shadow: 0 12px 26px rgba(13, 148, 136, 0.18);
}

body.is-dashboard .dashboard-metrics {
  gap: 8px;
  margin-top: 16px;
}

body.is-dashboard .dashboard-metrics div {
  padding: 11px 12px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

body.is-dashboard .dashboard-metrics span {
  font-size: 12px;
}

body.is-dashboard .dashboard-metrics strong {
  margin-top: 5px;
  font-size: 22px;
}

body.is-dashboard .projects-board {
  margin-top: 12px;
}

body.is-dashboard .board-card {
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

body.is-dashboard .panel-head h2 {
  font-size: 21px;
}

body.is-dashboard .panel-head p {
  margin-top: 3px;
  font-size: 13px;
}

body.is-dashboard .panel-head .secondary-button {
  min-height: 38px;
  border-radius: 9px;
  padding: 0 14px;
}

body.is-dashboard .projects-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 360px));
  gap: 12px;
  align-items: start;
  margin-top: 12px;
}

body.is-dashboard .project-workspace-card {
  gap: 10px;
  padding: 14px;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

body.is-dashboard .project-workspace-card.is-active {
  border-color: rgba(13, 148, 136, 0.34);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.08);
}

body.is-dashboard .project-workspace-card.is-disabled {
  opacity: 0.72;
}

body.is-dashboard .project-card-head {
  gap: 10px;
}

body.is-dashboard .project-card-head h3 {
  font-size: 19px;
}

body.is-dashboard .project-card-head a {
  margin-top: 4px;
  font-size: 13px;
}

body.is-dashboard .project-status,
body.is-dashboard .widget-badge {
  min-height: 24px;
  padding: 0 8px;
  font-size: 11px;
}

body.is-dashboard .project-status.is-off,
body.is-dashboard .widget-badge.is-off {
  color: #64748b;
  background: #eef2f7;
}

body.is-dashboard .project-mini-stats {
  gap: 6px;
}

body.is-dashboard .project-mini-stats div {
  padding: 8px;
  border-radius: 9px;
  background: #f6f8fb;
}

body.is-dashboard .project-mini-stats strong {
  font-size: 18px;
}

body.is-dashboard .project-mini-stats span {
  margin-top: 4px;
  font-size: 11px;
}

body.is-dashboard .project-widgets-head strong {
  font-size: 14px;
}

body.is-dashboard .project-widgets-head .secondary-button {
  min-height: 34px;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 13px;
}

body.is-dashboard .project-widgets-list {
  gap: 6px;
}

body.is-dashboard .compact-widget-card,
body.is-dashboard .compact-empty-widget {
  padding: 10px;
  border-radius: 10px;
}

body.is-dashboard .compact-widget-card.is-disabled {
  background: #f8fafc;
  opacity: 0.76;
}

body.is-dashboard .compact-widget-card strong,
body.is-dashboard .compact-empty-widget strong {
  font-size: 14px;
}

body.is-dashboard .compact-widget-card span,
body.is-dashboard .compact-empty-widget span {
  font-size: 12px;
}

body.is-dashboard .project-card-actions .primary-button {
  min-height: 40px;
  border-radius: 9px;
  box-shadow: none;
}

.switch-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #566176;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.switch-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-slider {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.18s ease;
}

.switch-slider::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.22);
  content: "";
  transition: transform 0.18s ease;
}

.switch-control input:checked + .switch-slider {
  background: var(--brand);
}

.switch-control input:checked + .switch-slider::after {
  transform: translateX(16px);
}

.project-card-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.compact-widget-card {
  grid-template-columns: minmax(0, 1fr);
}

.widget-row-top,
.widget-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.widget-actions {
  flex-wrap: wrap;
}

.small-action,
.danger-action {
  min-height: 32px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  padding: 0 10px;
}

.small-action {
  border: 1px solid #dbe3ee;
  color: #263042;
  background: #ffffff;
}

.danger-action {
  border: 1px solid #fecaca;
  color: #b42318;
  background: #fff5f5;
}

.widget-settings-view {
  margin-top: 14px;
}

.settings-card {
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.settings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.settings-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.settings-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.settings-box {
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.settings-box strong,
.settings-box span {
  display: block;
}

.settings-box strong {
  font-size: 16px;
}

.settings-box span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.settings-placeholder {
  margin-top: 16px;
  padding: 16px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  color: var(--muted);
  background: #ffffff;
}

.back-button {
  margin-bottom: 14px;
}

.settings-install-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 14px;
  margin-top: 16px;
  align-items: start;
}

.consultant-preview {
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.consultant-preview-head {
  position: relative;
  padding: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #0f172a, var(--brand));
}

.consultant-preview-head button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 18px;
}

.consultant-preview-head strong,
.consultant-preview-head span {
  display: block;
}

.consultant-preview-head strong {
  max-width: 240px;
  font-size: 17px;
}

.consultant-preview-head span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.consultant-preview-body {
  display: grid;
  gap: 8px;
  min-height: 210px;
  align-content: end;
  padding: 14px;
  background: #f8fafc;
}

.consultant-preview-body p {
  max-width: 82%;
  margin: 0;
  border-radius: 13px;
  background: #ffffff;
  color: #263042;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  font-size: 13px;
  padding: 10px;
}

.consultant-preview-body button {
  justify-self: end;
  border: 1px solid rgba(13, 148, 136, 0.34);
  border-radius: 999px;
  color: var(--brand);
  background: #ffffff;
  font-size: 13px;
  padding: 8px 12px;
}

.consultant-preview-input {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border-top: 1px solid #e2e8f0;
}

.consultant-preview-input span {
  color: #9aa3b2;
  font-size: 13px;
}

.consultant-preview-input b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: var(--brand);
}

.install-code-box {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  background: #f8fafc;
}

.install-code-box strong,
.install-code-box span,
.install-code-box code {
  display: block;
}

.install-code-box strong {
  font-size: 14px;
}

.install-code-box span {
  color: var(--muted);
  font-size: 12px;
}

.install-code-box code {
  overflow-x: auto;
  border-radius: 8px;
  color: #0f172a;
  background: #ffffff;
  font-size: 12px;
  line-height: 1.45;
  padding: 9px;
  white-space: nowrap;
}

.install-code-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.install-guide-panel {
  width: min(100%, 760px);
}

.install-guide-content {
  display: grid;
  gap: 14px;
}

.install-guide-content .eyebrow {
  width: fit-content;
  margin: 0;
}

.install-guide-content h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
}

.install-guide-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.install-guide-content code {
  border-radius: 6px;
  background: #f1f5f9;
  color: #0f172a;
  padding: 2px 5px;
}

.install-guide-code {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #f8fafc;
}

.install-guide-code-value {
  display: block;
  overflow-x: auto;
  border-radius: 8px;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px;
  white-space: nowrap;
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.install-steps article,
.install-checklist {
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
}

.install-steps strong,
.install-steps span,
.install-checklist strong,
.install-checklist span {
  display: block;
}

.install-steps strong,
.install-checklist strong {
  font-size: 15px;
}

.install-steps span,
.install-checklist span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  body.is-dashboard .app-shell {
    grid-template-columns: 1fr;
  }

  body.is-dashboard .app-sidebar {
    position: static;
    height: auto;
    padding: 10px 12px;
  }

  body.is-dashboard .sidebar-nav {
    gap: 8px;
  }

  body.is-dashboard .sidebar-projects {
    min-width: min(100%, 260px);
    margin: 0;
    padding: 0;
    border-left: 0;
  }

  body.is-dashboard .sidebar-project-link {
    width: 180px;
  }

  body.is-dashboard .sidebar-account {
    margin-top: 10px;
    padding-top: 10px;
    border-top-color: #e2e8f0;
  }
}

@media (max-width: 720px) {
  body.is-dashboard .app-content {
    padding: 14px 10px 28px;
  }

  body.is-dashboard .dashboard-top {
    align-items: stretch;
  }

  body.is-dashboard .dashboard-metrics,
  body.is-dashboard .projects-grid,
  .settings-install-preview,
  .install-code-actions,
  .install-steps {
    grid-template-columns: 1fr;
  }

  body.is-dashboard .project-mini-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  body.is-dashboard .panel-head,
  body.is-dashboard .project-card-head,
  .settings-head,
  .settings-install-preview,
  body.is-dashboard .project-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .project-card-head-actions,
  .widget-row-top,
  .widget-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .small-action,
  .danger-action,
  .widget-actions .switch-control {
    width: 100%;
  }
}
