* {
  box-sizing: border-box;
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050b16;
}

.brand-mark {
  width: 86px;
  height: 52px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(20, 135, 255, 0.22));
}

.brand-mark.small {
  width: 50px;
  height: 34px;
}

.brand-word {
  color: #f8fbff;
  font-weight: 1000;
  letter-spacing: -0.03em;
}

.brand-word span {
  color: #1688ff;
}

.brand-word.compact {
  display: block;
  font-size: 1rem;
}

.auth-shell {
  display: grid;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 18%, rgba(39, 217, 255, 0.06), transparent 28%),
    #050b16;
}

.auth-shell.hidden {
  display: none !important;
}

@media (min-width: 1024px) {
  .auth-shell {
    grid-template-columns: minmax(480px, 1fr) minmax(520px, 1fr);
  }
}

.auth-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.auth-shell.register-mode {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080c12;
}

.auth-shell.register-mode .auth-left {
  width: 100%;
  min-height: 100vh;
  align-items: flex-start;
  padding-top: 5rem;
}

.auth-shell.register-mode .auth-showcase {
  display: none;
}

.auth-shell.register-mode .brand-mark {
  width: 58px;
  height: 38px;
}

.auth-shell.register-mode .brand-word {
  font-size: 1.5rem;
}

.auth-shell.register-mode .mb-20 {
  margin-bottom: 3.5rem;
}

.auth-shell.register-mode .auth-field {
  border-color: #243247;
  background: #0b111b;
}

.auth-shell.register-mode .auth-field::placeholder {
  color: #a8c7ea;
}

.auth-shell.register-mode form button[type="submit"] {
  background: #a3a6ab;
  color: #111827;
}

.auth-label {
  display: block;
  margin-bottom: 0.55rem;
  color: #f8fafc;
  font-size: 0.92rem;
  font-weight: 800;
}

.auth-field {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 7px;
  background: #15253d;
  padding: 0.82rem 0.9rem;
  color: #fff;
  outline: none;
}

.auth-field:focus {
  border-color: #27d9ff;
  box-shadow: 0 0 0 3px rgba(39, 217, 255, 0.13);
}

.auth-showcase {
  position: relative;
  display: none;
  min-height: 100vh;
  overflow: hidden;
  border-left: 1px solid #1688ff;
  background:
    radial-gradient(circle at 55% 20%, rgba(39, 217, 255, 0.13), transparent 26%),
    linear-gradient(135deg, #071426, #0a1f37 55%, #061224);
}

@media (min-width: 1024px) {
  .auth-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.auth-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(22, 136, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
}

.orb-a {
  right: 6%;
  top: 20%;
  width: 90px;
  height: 90px;
}

.orb-b {
  left: 4%;
  bottom: 24%;
  width: 60px;
  height: 60px;
  background: rgba(49, 234, 212, 0.12);
}

.ring {
  position: absolute;
  border: 2px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
}

.ring-a {
  right: -4%;
  top: -6%;
  width: 210px;
  height: 210px;
}

.ring-b {
  left: -4%;
  bottom: -5%;
  width: 180px;
  height: 180px;
}

.showcase-center {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 360px;
  height: 185px;
  transform: translateX(-50%);
}

.tile {
  position: absolute;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border-radius: 18px;
  box-shadow: 0 24px 35px rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 2.4rem;
  font-weight: 1000;
  transform: rotate(-7deg);
}

.tile-node {
  left: 22px;
  top: 8px;
  background: linear-gradient(135deg, #ffb21a, #ff6b00);
}

.tile-py {
  right: 22px;
  top: 8px;
  background: linear-gradient(135deg, #ff2458, #cc0b2d);
  transform: rotate(7deg);
}

.discord-tile {
  position: absolute;
  left: 50%;
  top: 48px;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(180deg, #7898ff, #3157f2);
  box-shadow: 0 24px 35px rgba(0, 0, 0, 0.38), inset 0 -10px 0 rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}

.discord-tile span {
  width: 74px;
  height: 44px;
  border: 8px solid #edf3ff;
  border-bottom-width: 12px;
  border-radius: 22px 22px 18px 18px;
}

.discord-tile b::before,
.discord-tile b::after {
  content: "";
  position: absolute;
  top: 86px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #20345e;
}

.discord-tile b::before {
  left: 50px;
}

.discord-tile b::after {
  right: 50px;
}

.feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(560px, calc(100% - 5rem));
  gap: 1.9rem;
  margin-top: 14rem;
}

.feature-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 1000;
}

.feature-list h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 1000;
}

.feature-list p {
  margin-top: 0.3rem;
  color: #bed4f5;
  line-height: 1.55;
}

.field {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #263244;
  background: rgba(7, 11, 19, 0.92);
  padding: 0.78rem 0.9rem;
  color: #f8fafc;
  outline: none;
}

.field:focus {
  border-color: #28f0ff;
  box-shadow: 0 0 0 3px rgba(40, 240, 255, 0.12);
}

.primary-btn,
.secondary-btn,
.control-btn {
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-weight: 800;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #28f0ff, #3b82f6);
  color: #06101c;
}

.secondary-btn {
  border: 1px solid #263244;
  background: rgba(16, 23, 37, 0.9);
  color: #dce8ff;
}

.primary-btn:hover,
.secondary-btn:hover,
.control-btn:hover {
  transform: translateY(-1px);
}

.panel,
.metric-card {
  border: 1px solid #263244;
  background: rgba(16, 23, 37, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.panel {
  border-radius: 14px;
  padding: 1.25rem;
}

.metric-card {
  border-radius: 14px;
  padding: 1rem;
}

.metric-card p,
.label {
  font-size: 0.82rem;
  color: #94a3b8;
}

.metric-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 2rem;
  line-height: 1;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 900;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
  text-align: left;
  color: #b8d5f3;
  font-weight: 600;
}

.nav-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: #8fd7ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-btn.active,
.nav-btn:hover {
  background: rgba(20, 184, 166, 0.1);
  color: #f8fafc;
}

.nav-btn.active svg,
.nav-btn:hover svg {
  stroke: #27d9ff;
}

.bot-card {
  display: grid;
  gap: 0.75rem;
  border-radius: 20px;
  border: 1px solid #263244;
  background: rgba(7, 11, 19, 0.48);
  padding: 1rem;
}

@media (min-width: 720px) {
  .bot-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.status-pill {
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.terminal {
  min-height: 220px;
  max-height: 320px;
  overflow: auto;
  white-space: pre-wrap;
  border-radius: 14px;
  border: 1px solid #263244;
  background: #030712;
  padding: 1rem;
  color: #9cff7a;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.83rem;
}

.file-field {
  width: 100%;
  border-radius: 10px;
  border: 1px dashed #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  padding: 0.9rem;
  color: #cbd5e1;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td,
th {
  border-bottom: 1px solid #263244;
  padding: 0.85rem;
  text-align: left;
  white-space: nowrap;
}

.icon-btn {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #cbd5e1;
}

.icon-btn:hover {
  background: #101827;
}

.user-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid #203047;
  border-radius: 10px;
  background: #0d131d;
  padding: 0.45rem 0.7rem;
}

.user-menu-button span,
.profile-avatar {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(39, 217, 255, 0.1);
  color: #27d9ff;
  font-weight: 1000;
}

.user-menu-button span {
  width: 32px;
  height: 32px;
  font-size: 0.78rem;
}

.user-menu-button strong {
  color: #fff;
  font-weight: 900;
}

.user-menu-button b {
  color: #8da7c9;
  font-weight: 700;
}

.user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 50;
  width: 260px;
  overflow: hidden;
  border: 1px solid #203047;
  border-radius: 10px;
  background: #0d111a;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.user-dropdown-head {
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid #203047;
  padding: 0.95rem;
}

.user-dropdown-head strong {
  color: #f8fafc;
  font-size: 0.95rem;
}

.user-dropdown-head span {
  color: #9ebce3;
  font-size: 0.84rem;
}

.dropdown-action {
  display: block;
  width: 100%;
  border-bottom: 1px solid #203047;
  padding: 0.9rem 0.95rem;
  text-align: left;
  color: #d9e7fb;
  font-weight: 800;
}

.dropdown-action:hover {
  background: rgba(39, 217, 255, 0.08);
}

.dropdown-action.danger {
  border-bottom: 0;
  color: #ff3b47;
}

.profile-page {
  min-height: calc(100vh - 86px);
  padding: 4rem 1rem;
}

.profile-wrap {
  width: min(850px, 100%);
  margin: 0 auto;
}

.profile-wrap > h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 1000;
}

.profile-wrap > p {
  margin-top: 0.5rem;
  color: #9ebce3;
  font-size: 1.05rem;
}

.profile-card,
.security-row,
.password-card {
  border: 1px solid #203047;
  border-radius: 14px;
  background: #0d111a;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.6rem;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(39, 217, 255, 0.22);
  font-size: 1.45rem;
}

.profile-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 1000;
}

.profile-card span {
  color: #9ebce3;
}

.security-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.6rem;
  text-align: left;
}

.security-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 200, 120, 0.12);
  color: #00e083;
}

.security-row strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}

.security-row small {
  display: block;
  margin-top: 0.25rem;
  color: #9ebce3;
}

.security-row b {
  color: #9ebce3;
  font-size: 1.5rem;
}

.back-link {
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 800;
}

.password-card {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
  padding: 1.6rem;
}

.password-card label {
  display: grid;
  gap: 0.5rem;
}

.password-card label span {
  color: #fff;
  font-weight: 900;
}

.password-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.password-actions button {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-weight: 900;
}

.password-actions button:last-child {
  border: 1px solid #203047;
}

.action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #203047;
  border-radius: 14px;
  background: #0d131d;
  padding: 1rem 1.5rem;
}

.top-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid #203047;
  border-radius: 8px;
  background: #0b111a;
  padding: 0.72rem 0.95rem;
  color: #e5eefb;
  font-weight: 800;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.play-mark,
.spin-mark,
.power-mark {
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
}

.play-mark {
  border-bottom: 0.38rem solid transparent;
  border-left: 0.62rem solid #34d399;
  border-top: 0.38rem solid transparent;
  width: 0;
  height: 0;
}

.spin-mark {
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 999px;
}

.power-mark {
  border: 2px solid #fb7185;
  border-top-color: transparent;
  border-radius: 999px;
  position: relative;
}

.power-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.28rem;
  width: 2px;
  height: 0.48rem;
  background: #fb7185;
  transform: translateX(-50%);
}

.top-action:hover {
  border-color: #27d9ff;
  background: rgba(46, 233, 209, 0.08);
}

.top-action.start {
  color: #34d399;
}

.top-action.restart {
  color: #60a5fa;
}

.top-action.stop {
  color: #fb7185;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.dash-card {
  position: relative;
  overflow: hidden;
  min-height: 165px;
  grid-column: span 3;
  border: 1px solid #203047;
  border-radius: 14px;
  background: #0d111a;
  padding: 1.5rem;
}

.dash-card h2 {
  color: #f8fbff;
  font-weight: 900;
}

.dash-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 0.55rem;
  font-size: 1.75rem;
  line-height: 1;
}

.card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-head span {
  color: #9ebce3;
  font-size: 0.78rem;
}

.app-card {
  grid-column: span 3;
}

.wide {
  grid-column: span 9;
  min-height: 200px;
}

.history-card {
  grid-column: span 3;
  min-height: 520px;
  padding-bottom: 3.75rem;
}

.mini-chart,
.donut-card {
  grid-column: span 3;
  min-height: 300px;
}

.console-card {
  grid-column: span 6;
}

.lower-tools .dash-card {
  min-height: 300px;
}

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

.plan-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid #203047;
  border-radius: 14px;
  background: #0d111a;
  padding: 1.5rem;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(40, 240, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.plan-card.featured {
  border-color: rgba(49, 234, 212, 0.75);
  box-shadow: 0 0 35px rgba(49, 234, 212, 0.12);
}

.plan-kicker {
  color: #27d9ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 0.75rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 1000;
}

.plan-desc {
  margin-top: 0.85rem;
  color: #9ebce3;
  line-height: 1.55;
}

.plan-card strong {
  display: block;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 1000;
}

.plan-card span {
  display: block;
  margin-top: 0.2rem;
  color: #8da7c9;
}

.plan-card button {
  width: 100%;
  margin-top: 1.25rem;
  border-radius: 10px;
  background: #fff;
  padding: 0.9rem 1rem;
  color: #07100f;
  font-weight: 900;
}

.plan-card.featured button {
  background: linear-gradient(135deg, #27d9ff, #3b82f6);
  color: #06100f;
}

.admin-plan-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

.assign-plan-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

.assign-plan-form label {
  display: grid;
  gap: 0.4rem;
}

.assign-plan-form label span {
  color: #9ebce3;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-plan-form label {
  display: grid;
  gap: 0.4rem;
}

.admin-plan-form label span {
  color: #9ebce3;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid #203047;
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.1);
  padding: 0.45rem 0.8rem;
  color: #9edbff;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-plan-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid #203047;
  border-radius: 12px;
  background: rgba(5, 10, 17, 0.48);
  padding: 1rem;
}

.admin-plan-item h3 {
  color: #fff;
  font-weight: 1000;
}

.admin-plan-item p,
.admin-plan-item span {
  color: #9ebce3;
  font-size: 0.88rem;
}

.admin-plan-price {
  color: #27d9ff !important;
  font-weight: 1000;
}

.status-select {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #203047;
  border-radius: 10px;
  padding: 0.48rem 0.7rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.status-select span {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: #27d9ff;
}

.sparkline {
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  opacity: 0.95;
}

.realtime-chart {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 112px;
  opacity: 0.95;
}

.realtime-chart.tall {
  height: 150px;
}

.sparkline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(18, 193, 157, 0.28), rgba(18, 193, 157, 0.03)),
    linear-gradient(9deg, transparent 0 12%, #08c495 12.5% 14%, transparent 14.5% 35%, #08c495 35.5% 37%, transparent 37.5% 58%, #08c495 58.5% 60%, transparent 60.5%);
  clip-path: polygon(0 45%, 15% 55%, 32% 35%, 47% 70%, 66% 100%, 100% 100%, 100% 100%, 0 100%);
}

.sparkline-b {
  height: 145px;
}

.sparkline-b::before {
  clip-path: polygon(0 35%, 18% 38%, 35% 25%, 50% 45%, 65% 75%, 82% 100%, 100% 100%, 100% 100%, 0 100%);
}

.empty-state {
  display: grid;
  min-height: 370px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.empty-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #263449;
  color: #bed4f5;
  font-size: 1.7rem;
}

.empty-state h3 {
  margin-top: 1rem;
  font-weight: 900;
}

.empty-state p {
  max-width: 270px;
  color: #9ebce3;
  font-size: 0.9rem;
}

.events-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.events-list div {
  border: 1px solid #203047;
  border-radius: 12px;
  background: rgba(5, 10, 17, 0.5);
  padding: 0.9rem;
}

.events-list b,
.events-list span {
  display: block;
}

.events-list b {
  color: #f8fafc;
  font-size: 0.92rem;
}

.events-list span {
  margin-top: 0.25rem;
  color: #9ebce3;
  font-size: 0.82rem;
}

.history-link {
  position: absolute;
  inset: auto 0 0;
  border-top: 1px solid #203047;
  padding: 1rem 1.5rem;
  text-align: left;
  color: #64748b;
}

.usage-bar {
  width: 100%;
  height: 0.7rem;
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 999px;
  background: #172234;
}

.usage-bar span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #27d9ff, #28f0ff);
}

.week-row {
  position: absolute;
  inset: auto 1.6rem 1.6rem;
  display: flex;
  justify-content: space-between;
  color: #f8fafc;
  font-size: 0.82rem;
  font-weight: 800;
}

.donut {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  margin: 2.2rem auto 1.5rem;
  border: 20px solid #3b3b3d;
  border-radius: 999px;
  text-align: center;
}

.donut strong {
  margin: 0;
  font-size: 2rem;
}

.donut span {
  display: block;
  margin-top: -2.1rem;
  color: #9ebce3;
  font-size: 0.78rem;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: #9ebce3;
  font-size: 0.82rem;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.legend b {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
}

@media (max-width: 1280px) {
  .dash-card,
  .app-card,
  .mini-chart,
  .donut-card,
  .history-card {
    grid-column: span 6;
  }

  .wide,
  .console-card {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .action-bar {
    align-items: stretch;
    flex-direction: column;
    padding: 1rem;
  }

  .dash-card,
  .app-card,
  .mini-chart,
  .donut-card,
  .history-card,
  .wide,
  .console-card {
    grid-column: span 12;
  }

  .dash-card {
    padding: 1rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .admin-plan-form,
  .admin-plan-item,
  .assign-plan-form {
    grid-template-columns: 1fr;
  }
}

th {
  color: #94a3b8;
  font-size: 0.78rem;
  text-transform: uppercase;
}

