:root {
  --primary-orange: #ff8000;
  --primary-blue: #1a237e;
  --light-blue: #38ada9;
  --bg-gray: #f0f2f5;
  --white: #ffffff;
  --text-gray: #333333;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Trebuchet MS", sans-serif;
}

body {
  background-color: var(--bg-gray);
  color: var(--text-gray);
  padding: 16px;
}

.flex-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0 0 16px 0;
  gap: 16px;
}

@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }
}

.version-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 16px;
  margin: 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--primary-orange);
}

.version-title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

.info-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  padding: 20px 10px;
  margin: 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  min-height: 120px;
  border-top: 4px solid var(--primary-orange);
}

.info-container:hover {
  transform: translateY(-5px);
}

.info-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-blue);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-orange);
}

.chart-container {
  flex: 1;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 16px;
  box-shadow: var(--shadow);
  min-height: 300px;
  border-left: 4px solid var(--primary-blue);
}

.map-container {
  width: 100%;
  margin-top: 16px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-bottom: 4px solid var(--primary-orange);
}

#map {
  width: 100%;
  height: 400px;
}

canvas {
  width: 100% !important;
  height: 100% !important;
}
