* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-900: #081f52;
  --blue-800: #0b2a6a;
  --blue-700: #123b8c;
  --blue-400: #3f6fc3;
  --white: #ffffff;
  --green-1: #0d8d55;
  --green-2: #4fd894;
  --yellow: #e5b300;
  --orange: #ef7f1a;
  --red: #e54747;
  --text-main: #f2f6ff;
  --text-muted: #c7d6ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

body {
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #081f52;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow: auto;
}

.hero {
  max-width: 1100px;
  margin: 60px auto 40px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.menu-wrapper {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 70;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(8px);
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.16);
}

.menu-panel {
  position: absolute;
  top: 56px;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 70;
}

.menu-panel.open {
  display: flex;
}

.menu-link {
  color: var(--text-main);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.menu-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

@media (max-width: 640px) {
  .menu-wrapper {
    top: 18px;
    left: auto;
    right: 16px;
  }
  .menu-panel {
    right: 0;
    left: auto;
  }
}

.branding {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
}

.brand-word {
  font-size: 120px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: #f6f8ff;
}

.hero-text {
  color: #e1ebff;
}

.lede {
  max-width: 720px;
  color: #cddcff;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #9fc4ff;
  margin-bottom: 6px;
  font-weight: 700;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px 30px;
  position: relative;
}

.summary-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .summary-row {
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: 100%;
  }
  .summary-row .summary {
    width: 100%;
  }
  .alert-card.alert-side {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 1280px) {
  body {
    overflow: auto;
  }
}

.summary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(197, 216, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.summary::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(63, 111, 195, 0.22), transparent 60%);
  right: -40px;
  bottom: -60px;
  z-index: -1;
}

.summary-header h2 {
  font-size: 24px;
  margin-bottom: 18px;
}

.summary-meter {
  display: grid;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-bottom: 6px;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
}

.meter-label-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.device-label {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.9;
}

.card-level {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.meter-label strong {
  font-size: 18px;
  color: var(--white);
}

.meter-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.meter-steps .step {
  display: block;
  height: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.meter-steps .step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.meter-steps .active::after {
  opacity: 1;
}

.meter-steps .step.active {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  border-color: transparent;
  opacity: 1;
}

.meter-steps .step:not(.active) {
  opacity: 0.45;
}

.meter-steps .step.step-1.active { background: var(--blue-400); }
.meter-steps .step.step-2.active { background: var(--green-2); }
.meter-steps .step.step-3.active { background: var(--yellow); }
.meter-steps .step.step-4.active { background: var(--orange); }
.meter-steps .step.step-5.active { background: var(--red); }

.meter-legend {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
}

.status-cluster {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 16px;
  right: 16px;
}

.refresh-info {
  color: var(--text-muted);
  font-size: 13px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

@media (max-width: 640px) {
  .status-cluster {
    position: static;
    margin-top: 8px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
  }
  .status-cluster .refresh-info { order: 1; }
  .status-cluster .live-badge { order: 2; }
}

.live-badge {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 12px;
  letter-spacing: 0.4px;
  background: #ff2a2a;
  border: 1px solid #ff0000;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.28), 0 0 12px rgba(255, 0, 0, 0.36);
}

.live-badge.live {
  background: #ff2a2a;
  animation: blink 0.9s ease-in-out infinite alternate;
}

.live-badge.offline {
  background: #a00;
  border-color: #ff0000;
  animation: none;
}

@keyframes blink {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.floors {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  column-gap: 12px;
  justify-items: stretch;
}

.click-hint {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 13px;
}

.hint-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f2c34c;
  box-shadow: 0 0 8px rgba(242, 195, 76, 0.8);
}

.floor-card {
  width: 100%;
  max-width: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  position: relative;
}

.card-etage1 { grid-column: 1; grid-row: 1; }
.card-etage2 { grid-column: 2; grid-row: 1; }
.card-etage4 { grid-column: 3; grid-row: 1; }
.card-group1 { grid-column: 1; grid-row: 2; }
.card-group2 { grid-column: 2; grid-row: 2; }

.floor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.offline-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 20, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: inherit;
}

.offline-text {
  padding: 8px 14px;
  border: 2px solid var(--red);
  border-radius: 12px;
  background: rgba(229, 71, 71, 0.1);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 8px;
}

.card-head h3 {
  font-size: 18px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--white);
  white-space: nowrap;
}

.pill-blue { background: var(--blue-400); color: #0c2246; }
.pill-green { background: var(--green-2); color: #0e3a23; }
.pill-yellow { background: var(--yellow); color: #1f1a00; }
.pill-orange { background: var(--orange); color: #2d1400; }
.pill-red { background: var(--red); }

.bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  cursor: pointer;
}

.bar {
  height: 12px;
  background: #d8e6ff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.bar.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
}

.bar.green { background: var(--green-2); }
.bar.yellow { background: var(--yellow); }
.bar.orange { background: var(--orange); }
.bar.red { background: var(--red); }
.bars .bar:first-child.active { background: var(--blue-400); }

.alert-control {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
  font-size: 13px;
}

.alert-control label {
  color: var(--text-muted);
  font-weight: 600;
}

#alert-hours {
  width: 100%;
}

#alert-level,
#alert-email {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.alert-submit {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f2b800, #ef7f1a);
  color: #2d1400;
  font-weight: 800;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

.alert-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.alert-note {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  min-height: 16px;
}

.alert-card {
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 260px;
  overflow: hidden;
}

.alert-side {
  height: 100%;
}

.alert-side .alert-submit {
  margin-top: auto;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(12, 26, 70, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text-main);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 80;
}

.toast.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-close {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
  padding: 2px 0 2px;
  color: #d4e2ff;
  font-size: 13px;
  width: 100%;
  position: relative;
}

.footer .click-hint {
  position: absolute;
  left: 0;
  transform: translateY(-100%);
  top: 21px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 8, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 16px;
  z-index: 50;
}

.modal-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.premium-modal {
  max-width: 620px;
  position: relative;
}

.premium-logo-top {
  display: block;
  width: 96px;
  margin: 6px auto 4px;
  padding: 6px;
  border: 2px solid #f2b800;
  border-radius: 14px;
}

.modal {
  width: min(520px, 100%);
  background: rgba(10, 26, 70, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 20px 20px 16px;
  backdrop-filter: blur(10px);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.modal h3 {
  color: var(--white);
  margin: 0;
}

.modal-close {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.chart {
  display: grid;
  grid-template-columns: repeat(17, 1fr);
  align-items: end;
  gap: 8px;
  padding: 10px 4px 6px;
  height: 200px;
}

.chart-container {
  position: relative;
}

.chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  height: 100%;
}

.chart-bar {
  width: 80%;
  border-radius: 8px 8px 4px 4px;
  max-width: 18px;
  background: linear-gradient(180deg, #4fd894 0%, #123b8c 100%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease;
  min-height: 6px;
}

.chart-bar:hover {
  transform: translateY(-3px);
}

.chart-bar.blue { background: linear-gradient(180deg, #67b2ff 0%, #1b5fb4 100%); }
.chart-bar.green { background: linear-gradient(180deg, #5ee0a0 0%, #0f8c52 100%); }
.chart-bar.yellow { background: linear-gradient(180deg, #ffd95a 0%, #f2b800 100%); }
.chart-bar.orange { background: linear-gradient(180deg, #ffae5a 0%, #ef7f1a 100%); }
.chart-bar.red { background: linear-gradient(180deg, #ff7b7b 0%, #e54747 100%); }

.chart-hour {
  font-size: 11px;
  color: var(--text-muted);
}

.chart-hint {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: right;
}

.login-modal {
  max-width: 480px;
}

.login-actions {
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.google-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.35);
}

.google-btn:active {
  transform: translateY(0);
}

.g {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.g-blue { color: #4285f4; }
.g-red { color: #db4437; }
.g-yellow { color: #f4b400; }
.g-green { color: #0f9d58; }

.google-text {
  font-size: 15px;
  letter-spacing: 0.2px;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 50, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
  text-align: center;
}

.overlay-label {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-overlay.hidden {
  display: none;
}

.login-toggle {
  position: fixed;
  top: 28px;
  right: 110px;
  padding: 18px 18px;
  background: var(--white);
  color: var(--blue-900);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 15px;
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  z-index: 60;
}

/* Dev mode: hide auth/premium buttons visually without removing markup */
.login-toggle {
  display: none !important;
}

.login-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.login-toggle:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.premium-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: grid;
  gap: 10px;
  color: var(--text-main);
}

.premium-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text-main);
}

.premium-list strong {
  color: #f2b800;
}

.premium-pricing {
  display: grid;
  gap: 8px;
  margin: 10px 0 6px 0;
  padding: 10px;
  border: 1px solid rgba(242, 184, 0, 0.5);
  border-radius: 12px;
  background: rgba(242, 184, 0, 0.08);
}

.premium-pricing .price-item {
  display: flex;
  justify-content: space-between;
  color: #f2b800;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(242, 184, 0, 0.3);
  border-radius: 10px;
  padding: 10px 12px;
  width: 100%;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
}

.premium-pricing .label {
  text-transform: uppercase;
}

.premium-pricing .value {
  font-size: 15px;
}

.premium-pricing .price-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  border-color: rgba(242, 184, 0, 0.6);
}

.price-divider {
  text-align: center;
  color: #f2b800;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.see-features {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, #5ee0a0, #1b5fb4);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.see-features:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.see-features:active {
  transform: translateY(0);
}

.premium-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 50, 0.8);
  backdrop-filter: blur(10px);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
  text-align: center;
  color: var(--white);
}

.premium-modal-overlay.hidden {
  display: none;
}

.premium-overlay-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.premium-overlay-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .summary {
    padding: 18px;
  }

  .meter-label strong {
    font-size: 16px;
  }

  .floors {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .card-etage1,
  .card-etage2,
  .card-etage3,
  .card-etage4,
  .card-group1,
  .card-group2 {
    grid-column: auto;
    grid-row: auto;
  }
}
