:root {
  --bg-top: #0d1a28;
  --bg-bottom: #08101b;
  --bg-accent: rgba(26, 107, 255, 0.17);
  --bg-accent-soft: rgba(212, 223, 255, 0.095);
  --panel: rgba(14, 24, 39, 0.79);
  --panel-strong: rgba(16, 29, 48, 0.95);
  --panel-active: rgba(18, 33, 57, 0.95);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --border: rgba(212, 223, 255, 0.11);
  --border-strong: rgba(212, 223, 255, 0.165);
  --text: #edf2fd;
  --text-soft: rgba(237, 242, 253, 0.875);
  --muted: #97a5c1;
  --muted-strong: #b4c1d7;
  --blue: #1a6bff;
  --blue-soft: #d4dfff;
  --amber: #ffaa00;
  --success: #53d38a;
  --danger: #ff6b7c;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  --radius: 6px;
  --radius-sm: 6px;
  --sidebar-width: 272px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, var(--bg-accent), transparent 26%),
    radial-gradient(circle at 100% 14%, rgba(255, 170, 0, 0.09), transparent 20%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(212, 223, 255, 0.02) 0, rgba(212, 223, 255, 0.02) 1px, transparent 1px, transparent 100%),
    linear-gradient(180deg, rgba(212, 223, 255, 0.018) 0, rgba(212, 223, 255, 0.018) 1px, transparent 1px, transparent 100%);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 95%);
  opacity: 0.34;
}

a {
  color: var(--blue-soft);
}

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(8, 16, 28, 0.7);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(26, 107, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(26, 107, 255, 0.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.app-shell {
  min-height: 100vh;
}

.auth-shell,
.invite-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.auth-card,
.invite-card {
  width: min(520px, calc(100vw - 32px));
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(10, 21, 38, 0.96), rgba(7, 15, 28, 0.98));
  box-shadow: var(--shadow);
}

.auth-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
}

.auth-card h1,
.invite-card h1 {
  margin: 0 0 10px;
  font-size: 31px;
  line-height: 1.06;
}

.auth-copy,
.muted-copy {
  margin: 0 0 18px;
  color: var(--text-soft);
}

.feedback {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 124, 0.2);
  background: rgba(255, 107, 124, 0.08);
  color: #ffb4bf;
}

.feedback.success {
  border-color: rgba(83, 211, 138, 0.2);
  background: rgba(83, 211, 138, 0.08);
  color: #b8efcc;
}

.auth-form,
.stack-form {
  display: grid;
  gap: 14px;
}

.label {
  display: grid;
  gap: 8px;
}

.label span {
  font-size: 13px;
  color: var(--muted-strong);
}

.primary-button,
.secondary-button,
.success-button,
.ghost-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid transparent;
  transition: 180ms ease;
  text-decoration: none;
}

.primary-button {
  color: #fff;
  background: linear-gradient(180deg, #2a79ff, #1a6bff);
  box-shadow: 0 10px 20px rgba(26, 107, 255, 0.24);
}

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

.primary-button:disabled,
.primary-button.is-loading {
  opacity: 0.92;
  cursor: wait;
}

.button-spinner {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: #ffffff;
  animation: buttonSpin 0.8s linear infinite;
}

.secondary-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
}

.success-button {
  color: #f7fff9;
  background: linear-gradient(180deg, rgba(83, 211, 138, 0.95), rgba(49, 176, 104, 0.95));
  border-color: rgba(83, 211, 138, 0.24);
  white-space: nowrap;
}

.success-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(83, 211, 138, 0.18);
}

.ghost-button {
  color: var(--muted-strong);
  background: transparent;
  border-color: rgba(212, 223, 255, 0.08);
}

.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
  background: #1a6bff;
  border-color: rgba(26, 107, 255, 0.28);
  color: #f5f8ff;
}

.danger-button {
  color: #fff;
  background: linear-gradient(180deg, #ff7b8a, #ff5c71);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  padding: 28px 24px 24px;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  backdrop-filter: blur(8px);
}

.main {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  height: 100vh;
  overflow-y: auto;
  padding: 28px 32px 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand h1,
.topbar h2,
.panel h3,
.modal-card h3 {
  margin: 0;
}

.brand h1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: grid;
  gap: 6px;
}

.nav-link {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  text-align: left;
  font-size: 15.5px;
  font-weight: 500;
}

.nav-link.active {
  background: rgba(212, 223, 255, 0.025);
  border-color: rgba(212, 223, 255, 0.06);
  color: var(--text);
}

.nav-link:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.sidebar-divider {
  height: 1px;
  margin: 18px 0 0;
  background: rgba(212, 223, 255, 0.08);
}

.sidebar-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.sidebar-user {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-user strong {
  display: block;
  margin-bottom: 4px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.topbar h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stats-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 12px;
  padding: 0;
  border-bottom: 1px solid rgba(212, 223, 255, 0.08);
}

.customer-app .stats-grid {
  gap: 0;
  margin-bottom: 8px;
}

.customer-app .stats-grid + .panel {
  padding-top: 12px;
}

.stat-card,
.panel,
.ticket-row,
.queue-card,
.timeline-item,
.message-card,
.help-card,
.admin-card,
.metric-strip {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 14px 22px 14px 16px;
  border: 0;
  border-right: 1px solid rgba(212, 223, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.customer-app .stat-card {
  padding-right: 18px;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  font-size: 30px;
  margin: 12px 0 14px;
}

.panel {
  padding: 24px 0 0;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.panel-header,
.split-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-header p,
.split-header p,
.section-copy {
  margin: 6px 0 0;
  color: var(--text-soft);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.toolbar > * {
  flex: 1 1 180px;
}

.ticket-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

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

.ticket-row {
  padding: 22px 20px 20px;
  cursor: pointer;
  border: 1px solid rgba(212, 223, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
  box-shadow: none;
}

.ticket-row.is-completed {
  border-color: rgba(83, 211, 138, 0.2);
  background: rgba(83, 211, 138, 0.04);
}

.ticket-row.is-progress {
  border-color: rgba(26, 107, 255, 0.18);
  background: rgba(26, 107, 255, 0.04);
}

.ticket-row.is-idle {
  border-color: rgba(212, 223, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.ticket-row.active {
  border-color: rgba(26, 107, 255, 0.24);
  background: rgba(26, 107, 255, 0.04);
}

.customer-app .ticket-row.active {
  border-color: rgba(212, 223, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.ticket-row-header,
.ticket-row-meta,
.detail-meta,
.inline-actions,
.queue-grid,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ticket-row-header {
  margin-bottom: 14px;
}

.ticket-row-header strong {
  font-size: 1.2em;
  line-height: 1.2;
}

.ticket-row-aside {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.ticket-row-meta {
  margin-bottom: 16px;
}

.ticket-row-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.ticket-row-footer .ticket-row-meta {
  margin-bottom: 0;
  justify-content: flex-end;
}

.ticket-row-header {
  justify-content: space-between;
}

.ticket-row p,
.message-card p,
.timeline-item p,
.help-card p,
.queue-card p {
  margin: 0;
}

.ticket-row-summary {
  display: grid;
  gap: 15px;
  margin: 0 0 18px;
}

.ticket-row-hint {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted-strong);
}

.ticket-row-hint.fresh {
  color: #53d38a;
}

.ticket-row-lastreply {
  display: block;
  margin: 0 0 15px;
  font-size: 14px;
  color: var(--muted);
}

.ticket-request-body {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(212, 223, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 18, 0.72);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 1000;
  animation: modalFadeIn 180ms ease;
}

.modal-card.ticket-details-modal {
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 24px;
  border: 1px solid rgba(212, 223, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10, 20, 34, 0.96), rgba(8, 16, 28, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  animation: modalCardIn 220ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.ticket-details-grid {
  display: grid;
  gap: 18px;
  margin-top: 20px;
  grid-template-columns: 1.35fr 0.9fr;
}

.ticket-details-list {
  display: grid;
  gap: 14px;
}

.modal-overlay.closing {
  animation: modalFadeOut 220ms ease forwards;
}

.modal-card.ticket-details-modal.closing {
  animation: modalCardOut 220ms ease forwards;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes modalCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modalCardOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
}

@keyframes buttonSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ticket-row .form-actions {
  margin-top: 0;
}

.muted {
  color: var(--muted);
}

.soft {
  color: var(--text-soft);
}

.detail-column {
  display: grid;
  gap: 20px;
  align-content: start;
}

.customer-app .detail-column {
  max-width: none;
}

.customer-app .stats-grid + .detail-column {
  margin-top: 18px;
}

.customer-app .detail-column > .panel:first-child {
  padding-top: 8px;
}

.chat-ticket-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.chat-ticket-head h3 {
  margin: 0 0 12px;
}

.chat-ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 14px;
}

.detail-card {
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(212, 223, 255, 0.08);
  border-radius: 0;
  background: transparent;
}

.detail-card h3,
.detail-card h4 {
  margin: 0 0 12px;
}

.detail-description {
  white-space: pre-wrap;
  color: var(--text-soft);
  line-height: 1.58;
}

.message-stream,
.timeline-list,
.queue-list,
.help-list,
.admin-list {
  display: grid;
  gap: 0;
}

.chat-stream {
  gap: 14px;
  width: 100%;
  max-width: none;
}

.message-card,
.timeline-item,
.queue-card,
.help-card,
.admin-card {
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(212, 223, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.message-card.internal {
  border-color: rgba(255, 170, 0, 0.22);
  background: rgba(255, 170, 0, 0.04);
}

.chat-bubble {
  max-width: min(78%, 920px);
  width: fit-content;
  padding: 18px 20px;
  border: 1px solid rgba(212, 223, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  position: relative;
}

.chat-bubble.outbound {
  margin-left: auto;
  background: linear-gradient(180deg, rgba(26, 107, 255, 0.16), rgba(26, 107, 255, 0.1));
  border-color: rgba(26, 107, 255, 0.22);
  border-bottom-right-radius: 8px;
}

.chat-bubble.team.inbound {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-left-radius: 8px;
}

.chat-bubble.customer.inbound {
  background: rgba(255, 255, 255, 0.02);
  border-bottom-left-radius: 8px;
}

.chat-bubble-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  align-items: center;
}

.chat-badges {
  margin-bottom: 12px;
}

.chat-compose {
  padding: 16px 0 0;
  border-top: 1px solid rgba(212, 223, 255, 0.08);
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.72), rgba(8, 16, 28, 0.95));
  backdrop-filter: blur(10px);
}

.chat-compose-top {
  margin-bottom: 12px;
}

.chat-compose-type {
  width: auto;
  min-width: 220px;
}

.chat-compose-shell {
  border: 1px solid rgba(212, 223, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
}

.chat-compose textarea {
  min-height: 120px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  resize: none;
}

.chat-compose textarea:focus {
  border: 0;
  box-shadow: none;
}

.chat-compose-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.chat-compose-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chat-attach-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 223, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  cursor: pointer;
}

.chat-attach-button input {
  display: none;
}

.customer-app .chat-compose textarea {
  min-height: 110px;
}

.customer-app .chat-compose {
  padding-top: 0;
  border-top: 0;
  background: transparent;
  backdrop-filter: none;
}

.timeline-item {
  border-style: dashed;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.badge.blue { background: rgba(26, 107, 255, 0.12); color: #8fbdff; }
.badge.amber { background: rgba(255, 170, 0, 0.12); color: #ffd06f; }
.badge.green { background: rgba(83, 211, 138, 0.12); color: #53d38a; }
.badge.red { background: rgba(255, 107, 124, 0.12); color: #ff8c9a; }
.badge.gray { background: rgba(212, 223, 255, 0.08); color: #c6d1e4; }

.attachment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.attachment-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
}

.queue-card strong,
.help-card strong,
.admin-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.kicker-number {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.metric-strip {
  padding: 16px;
}

.bar-chart {
  display: grid;
  gap: 10px;
}

.bar {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 12px;
  align-items: center;
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a6bff, #53d38a);
}

.file-input {
  display: block;
  width: 100%;
  padding: 10px 0 0;
}

.login-hint,
.small-copy {
  font-size: 13px;
  color: var(--muted);
}

.form-actions,
.floating-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ticket-detail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.help-public,
.help-public a {
  color: #0f1726;
}

.help-public {
  background: linear-gradient(180deg, #f2f7ff, #e6eefc);
  min-height: 100vh;
}

.help-public::before {
  display: none;
}

.help-public-shell,
.help-article-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.help-public-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.help-logo {
  width: 56px;
  height: 56px;
}

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

.help-public-grid section,
.help-article-shell {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(19, 42, 71, 0.08);
  padding: 24px;
}

.help-public-grid ul {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.help-public-grid li p,
.lead-copy {
  color: rgba(15, 23, 38, 0.72);
}

.article-body {
  line-height: 1.75;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: #3055a4;
}

@media (max-width: 1180px) {
  .stats-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .sidebar {
    position: static;
    width: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .main {
    margin-left: 0;
    padding: 22px 18px 40px;
  }

  .topbar,
  .panel-header,
  .split-header,
  .chat-ticket-head {
    flex-direction: column;
  }

  .ticket-row-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .ticket-row-footer .ticket-row-meta {
    justify-content: flex-start;
  }

  .ticket-row-aside {
    justify-content: flex-start;
    text-align: left;
  }

  .chat-bubble {
    max-width: 100%;
  }

  .chat-compose-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .chat-compose-type {
    width: 100%;
    min-width: 0;
  }

  .stats-grid,
  .grid-3,
  .grid-2,
  .help-public-grid {
    grid-template-columns: 1fr;
  }

  .customer-app .stats-grid {
    border-bottom: 0;
  }

  .customer-app .stat-card {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 223, 255, 0.08);
  }

  .ticket-details-grid {
    grid-template-columns: 1fr;
  }
}
