* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  height: 100vh;
  padding: 24px;
  font-family: "Segoe UI", sans-serif;
  background: #eef2f7;
  color: #102033;
  overflow: hidden;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 4px;
  height: calc(100vh - 48px);
  min-height: 0;
}

.stacked-column {
  display: grid;
  gap: 4px;
  grid-template-rows: 140px auto auto;
  align-content: start;
  min-height: 0;
}

.panel {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #d8e0ea;
  box-shadow: 0 14px 32px rgba(18, 38, 63, 0.08);
  font-size: 1.1rem;
  font-weight: 600;
  min-height: 0;
  overflow: hidden;
}

.button-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: calc(100% - 24px);
  height: auto;
  margin: 10px 0px;
}

.stack-button {
  min-width: 140px;
  padding: 10px 18px;
  border: 1px solid #b9c7d8;
  border-radius: 6px;
  background: #f5f8fc;
  color: #102033;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.stack-button:hover {
  background: #e7eef7;
}

.large-panel {
  min-height: 0;
}

@media (max-width: 768px) {
  body {
    padding: 16px;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    height: calc(100vh - 32px);
  }
  .large-panel {
    min-height: 0;
  }
}

/*# sourceMappingURL=style.css.map */
