html,
body {
  height: 100%;
  height: 100vh;
  position: fixed;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@supports (height: 100dvh) {
  html,
  body {
    height: 100dvh;
  }
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ebfafd;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.main-content p {
  font-size: 1em;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Header-specific styles */
.header {
  background-color: #004799;
  color: white;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  z-index: 0;
}

.header-logo {
  width: 150px;
  margin-left: 20px;
  position: relative;
  z-index: 3;
  align-self: flex-start;
  margin-top: 10px;
  margin-bottom: 20px;
}

.header-content {
  position: absolute;
  bottom: 10px;
  left: 40px;
  z-index: 3;
  margin-top: 20px;
}

.header-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  white-space: nowrap;
  align-self: flex-start;
}

/* .header-image-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    overflow: hidden;
    border-radius: 100% 0 0 100%;
    z-index: 1;
}

.header-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: opacity(0.7);
} */

.header-image-container {
  position: absolute;
  right: 0;
  top: 50%;
  width: 300px;
  /* Match the width of accent-4 */
  height: 300px;
  /* Match the height of accent-4 */
  overflow: hidden;
  border-radius: 150px 0 0 150px;
  /* Half of the width and height for a perfect semi-circle */
  transform: translateY(-50%);
  /* Center vertically */
  z-index: 1;
}

.header-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: opacity(0.7);
}

.circular-accent-container {
  position: absolute;
  top: 50%;
  right: 150px;
  /* This div itself has no dimensions, it's just a reference point */
}

.circular-accent {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 150%;
  /* Center each accent on the container's position */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accent-1 {
  width: 600px;
  height: 600px;
}

.accent-2 {
  width: 500px;
  height: 500px;
}

.accent-3 {
  width: 400px;
  height: 400px;
}

@media (max-width: 450px) {
  .header-image-container {
    right: -100px;
  }

  .circular-accent-container {
    position: absolute;
    right: 50px;
  }
}

@media (max-width: 450px) {
  .header-logo {
    width: 120px;
  }

  .header-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
}

.intro-text {
  max-width: 800px;
  width: 90%;
  margin: 20px;
  padding: 20px;
  border: solid 1px #004799;
  border-radius: 10px;
}

.intro-text h1 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
  color: #004799;
}

/* Category grid styles */
.category-grid {
  display: grid;
  gap: 15px;
  max-width: 840px;
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 10px;
}

.category-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 2px solid #004799;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  height: 120px;
  text-decoration: none;
}

.category-button:hover {
  background-color: #ddedff;
}

.category-button.selected {
  background-color: #004799;
}

.icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.category-button:not(.selected) .icon {
  filter: invert(100%) sepia(0%) saturate(100%) hue-rotate(201deg)
    brightness(94%) contrast(100%);
}

.category-button.selected .icon {
  filter: brightness(0) invert(1);
}

.label {
  color: #004799;
  font-weight: bold;
  text-align: center;
}

.category-button.selected .label {
  color: white;
}

/* Responsive design */
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .category-button {
    max-width: 90px;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) and (min-width: 488px) {
  .icon {
    margin-right: 15px;
    margin-bottom: 0;
  }

  .category-button {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
  }
}

.section_box {
  max-width: 900px;
  width: 100%;
  margin: 10px;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  border: 1px solid #004799;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section_box h2 {
  color: #004799;
  margin-bottom: 10px;
  margin-top: 0px;
}

/* Tighter spacing only inside the sector analysis section */
.section_box.sector-analysis {
  padding: 20px;
} /* was 30px */
.section_box.sector-analysis .charts-container {
  gap: 12px;
} /* was 20px */
.section_box.sector-analysis .chart,
.section_box.sector-analysis .big-chart,
.section_box.sector-analysis .solo-chart {
  margin-bottom: 6px;
} /* was 30px */
.section_box.sector-analysis .sector_chart {
  margin: 12px 0;
} /* was 20px */
.section_box.sector-analysis .insight-box {
  margin: 12px;
} /* was 25px */
.section_box.sector-analysis .chart-group {
  margin-bottom: 10px;
} /* was 20–30px */
.section_box.sector-analysis h3 {
  margin-bottom: 8px;
} /* tighten headings */

/* Carousel Wrapper */
.org-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-top: 20px;
  margin-bottom: 40px;
  border: 1px solid #004799;
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
}

/* Carousel Container */
.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 8px;
  padding: 10px 0;
  margin: 0;
  height: 200px;
  align-items: center;
}

/* Organization Cards */
.org-card {
  flex: 0 0 160px;
  height: 160px;
  padding: 8px;
  background-color: #004799;
  color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  z-index: 1;
  position: relative;
  cursor: pointer;
}

.org-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.1em;
  color: white;
}

.org-card p {
  margin: 0;
  font-size: 0.9em;
  color: white;
}

.org-card.selected {
  background-color: #38e5ed;
  z-index: 2;
}

.org-card.selected h3 {
  color: #004799;
}

.org-card.selected p {
  color: #004799;
}

/* Carousel Buttons */
.carousel-button {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #004799;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.carousel-button.prev {
  left: 0px;
}

.carousel-button.next {
  right: 0px;
}

/* selected organization styles */
.selected-organization-information-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.selected-organization-information-container h2 {
  text-align: center;
}

.org-details {
  display: flex;
}

.org-column {
  align-items: center; /* Align items to the start (top) */
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
}

.org-column h3 {
  flex-grow: 0;
  margin-bottom: 5;
  box-sizing: border-box;
  text-align: center;
}

.org-column ul {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  vertical-align: top;
  padding: 25px;
  margin: 0;
  list-style-type: disc;
  max-width: 900px;
}

/* end selected organization styles */

/* Responsive Adjustments */
@media (min-width: 768px) {
  .org-carousel-wrapper {
    max-width: 800px;
    /* Increased max-width for larger screens */
    height: 220px;
  }

  .carousel-container {
    gap: 8px;
  }

  .org-card {
    flex: 0 0 160px;
    height: 160px;
  }
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}

/*sector chart styles*/
.sector_chart {
  margin-top: 20px;
  margin-bottom: 20px;
}

.sector_chart body {
  font-family: Arial, sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f0f0f0;
}

.sector_chart h3 {
  color: #004799;
  margin-bottom: 10px;
}

.sector_chart .chart {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.sector_chart .chart h2 {
  margin-top: 0;
  color: #444;
}

.sector_chart .chart-container {
  position: relative;
  padding-left: 200px;
  padding-bottom: 5px;
  transform: translateX(-15%);
}

.sector_chart .chart-grid {
  position: absolute;
  top: 0;
  left: 200px;
  right: 0;
  bottom: 20px;
  z-index: 1;
}

.sector_chart .grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ccc;
}

.sector_chart .grid-line span {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

.sector_chart .grid-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: 1px solid #ccc;
}

.sector_chart .chart-group {
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
  padding-bottom: 10px;
}

.sector_chart .chart-label {
  position: absolute;
  left: -150px;
  width: 140px;
  text-align: left;
  padding-right: 10px;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.sector_chart .chart-bars {
  display: flex;
  flex-direction: column;
}

.sector_chart .bar-row {
  height: 25px;
  margin-bottom: 5px;
}

.sector_chart .bar-group {
  display: flex;
  height: 100%;
  justify-content: flex-start;
  position: relative;
}

.sector_chart .bar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 100%;
  position: relative;
}

.sector_chart .bar-zero {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 100%;
  position: relative;
}

.in-now .bar-label {
  z-index: 2;
  color: rgba(0, 0, 0, 0.9);
}

.in-future {
  width: 100%;
}

.in-future .bar-label {
  z-index: 2;
  padding-left: 100;
  flex: 1;
  text-align: center;
  width: 100%;
}

.sector_chart .in-future .bar-label {
  padding-left: 10px;
  z-index: 2;
}

.sector_chart .out-now .bar-label {
  right: auto;
  left: 100%;
  padding-left: 15px;
  z-index: 2;
}

.sector_chart .out-future .bar-label {
  right: auto;
  left: 100%;
  padding-left: 30px;
  z-index: 2;
}

.sector_chart .bar-label-zero {
  padding-left: 25px;
  z-index: 2;
  color: rgb(0, 0, 0);
}

.in-now {
  background-color: #40e0d0;
}

.sector_chart .out-now {
  background-color: #00008b;
  color: white;
}

.sector_chart .out-future {
  background-color: #87ceeb;
  color: rgb(0, 0, 0);
}

.sector_chart .resp {
  background-color: #4169e1;
  color: white;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sector_chart .legend-item {
  display: flex;
  align-items: center;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 5px;
  padding: 5px;
  border-radius: 5px;
  background-color: white;
  color: black;
}

.sector_chart .legend-item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-right: 5px;
}

.legend-item.in-now::before {
  background-color: #40e0d0;
}

.sector_chart .legend-item.in-future::before {
  background-color: #a0ffff;
}

.sector_chart .legend-item.out-now::before {
  background-color: #00008b;
}

.sector_chart .legend-item.out-future::before {
  background-color: #87cefa;
}

.sector_chart .legend-item.resp::before {
  background-color: #4169e1;
}

/* Chart styles */
.charts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.subcharts-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 5px;
  column-gap: 25px;
  padding: 20px;
}

.subcharts-container h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.subchart {
  background-color: white;
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 10px;
  max-width: 220px;
}

.subchart h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.8em;
}

.big-chart {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.big-chart h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.big-chart:not(.sector_chart) .chart-bars::before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -15px;
  left: -1px;
  width: 1px;
  height: 60px;
  background-color: #ccc;
}

.chart {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
  max-width: 220px;
}

.chart h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.chart-container {
  position: relative;
  padding-left: 200px;
  transform: translateX(-25%);
  width: 50%;
}

.chart:not(.sector_chart) .chart-bars::before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -15px;
  left: -1px;
  width: 1px;
  height: 60px;
  background-color: #ccc;
}

.chart-group {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  padding-bottom: 0;
  min-height: 0px;
  height: 40px;
}

.chart-label {
  position: absolute;
  left: -120px;
  width: 100px;
  text-align: left;
  font-size: 14px;
  top: 0;
}

.chart-label-first-word {
  font-weight: bold;
}

.chart-bars {
  flex-grow: 1;
  min-width: 0;
}

.bar-row {
  margin-bottom: 5px;
  height: 25px;
}

/* Give each individual bar row more vertical space */
.chart-bars .bar-row {
  margin: 6px 0; /* Increase spacing between bars */
}

.sector-bar-group {
  background-color: #a0ffff;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: flex-start;
  position: relative;
}

.bar-group {
  background-color: #00ffff;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: flex-start;
  position: relative;
}

.bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5px;
  color: #333;
  font-size: 12px;
  height: 30px;
  width: 100%;
  position: relative;
  margin-left: 8px;
}

.sector-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 12px;
  width: 100%;
  position: relative;
}

.bar-zero {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #333;
  font-size: 12px;
  height: 100%;
  margin-left: 13px;
  width: 100%;
  position: relative;
}

.solo-chart {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
  max-width: 300px;
}

.solo-chart h3 {
  color: #004799;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.solo-chart-container {
  position: relative;
  padding-left: 200px;
  transform: translateX(-25%);
  width: 50%;
}

.solo-chart:not(.sector_chart) .chart-bars::before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -15px;
  left: 30px;
  width: 1px;
  background-color: #ccc;
}

.solo-chart-group {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  padding-bottom: 0;
  min-height: 0px;
}

.solo-chart-label {
  position: absolute;
  left: -120px;
  width: 150px;
  text-align: left;
  font-size: 14px;
  top: 0;
}

/* Let chart groups auto-size for charts that can have multiple bar rows */
.solo-chart .chart-group,
.sector_chart .chart-group {
  height: auto; /* override the global height: 40px */
  min-height: 0; /* be explicit; don't force a minimum */
  align-items: stretch;
}

/* Make the two bars in the separated version breathe a bit */
.solo-chart .chart-bars .bar-row {
  height: 26px; /* was 25px */
  margin: 8px 0; /* was 6px 0 in your tightened rules */
}

.solo-bar-group {
  background-color: #00ffff;
  display: flex;
  height: 30px;
  width: 80%;
  left: 31px;
  justify-content: flex-start;
  position: relative;
  min-width: 13px;
}

.zero-value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #333;
  font-size: 12px;
  height: 100%;
  padding-left: 5px;
}

/* Newcomer Journey styles */
.journey-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-image-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.journey-curve {
  width: 400px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
}

.journey-text {
  padding: 0 20px;
}

.journey-text h3 {
  color: #004799;
  margin-bottom: 10px;
}

.journey-text p {
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .journey-image-text-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .journey-curve {
    margin-bottom: 0;
    margin-right: 20px;
  }

  .journey-text {
    flex: 1;
    min-width: 0;
  }
}

.journey-phases {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.phase {
  flex-basis: calc(25% - 15px);
  margin-bottom: 20px;
  background-color: #f0f8ff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phase-header {
  position: relative;
  padding: 10px 15px;
  color: white;
  font-weight: bold;
}

.phase-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid inherit;
}

.euphoria {
  background-color: #000000;
}

.culture-shock {
  background-color: #004799;
}

.acculturation {
  background-color: #4682b4;
}

.stable-state {
  background-color: #87ceeb;
}

.stable-state h3 {
  color: #000000;
}

.phase-header h3 {
  margin: 0;
  font-size: 1em;
}

.phase ul {
  flex-grow: 1;
  padding: 15px;
  margin: 0;
  list-style-type: disc;
}

.phase li {
  margin-bottom: 5px;
  font-size: 0.9em;
}

.hidden {
  display: none;
}

.more-btn {
  background-color: transparent;
  color: #004799;
  border: 2px solid #004799;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
  text-align: center;
  margin: 0;
  transition: background-color 0.3s, color 0.3s;
}

.more-btn .arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.more-btn.less .arrow {
  transform: rotate(180deg);
}

/* Responsive design for Newcomer Journey */
@media (max-width: 768px) {
  .phase {
    flex-basis: 100%;
    margin-bottom: 15px;
  }

  .phase-header::after {
    display: none;
  }
}

.desktop-more-btn {
  display: none;
  width: 100%;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .phase .more-btn {
    display: none !important;
  }

  .desktop-more-btn {
    display: block;
  }
}

@media (max-width: 768px) {
  .desktop-more-btn {
    display: none !important;
  }
}

.site-footer {
  background-color: #ebfafd;
  padding: 10px 20px;
  margin-top: 20px;
}

.footer-content {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
  min-height: 40px;
}

.footer-contact-info {
  font-size: 0.9em;
  margin-top: 0px;
  margin-bottom: 20px;
  white-space: nowrap;
}

.footer-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

.footer-button {
  flex: 1;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.footer-button.primary {
  background-color: #0056b3;
  color: white;
}

.footer-button.primary:hover {
  background-color: #003d82;
}

.footer-button.secondary {
  background-color: white;
  color: #0056b3;
  border: 1px solid #0056b3;
}

.footer-button.secondary:hover {
  background-color: #e6f0ff;
}

@media (max-width: 480px) {
  .footer-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-button {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }
}

.two-column-container {
  display: flex;
  justify-content: space-between;
}

.chart-wrapper {
  flex: 1;
  margin: 25px;
}

.insight-box {
  margin: 25px;
}

/* 1→2→3 column layout for lists of small bar charts */
.three-col-charts {
  display: grid;
  grid-template-columns: 1fr; /* phones: 1 col */
  gap: 18px 28px; /* row/col gap */
}

/* tablets: 2 cols */
@media (min-width: 768px) {
  .three-col-charts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* large screens: 3 cols */
@media (min-width: 1100px) {
  .three-col-charts {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* make the small “row” charts behave nicely inside the grid */
.big-chart .three-col-charts .chart-container {
  width: auto; /* override global 50% */
  transform: none; /* override global translateX */
  margin: 0; /* grid handles spacing */
  /* keep padding-left so labels have room (your global = 200px) */
}

.subcharts-container .solo-chart {
  border: none;
  box-shadow: none;
}

.subcharts-container .solo-chart h3 {
  font-size: 0.9em;
}

/* CODE TO ADD A BORDER TO FEATURES
   * I use this a lot when I'm working with CSS 

  border-width: 1px;
  border-style: solid;
  border-color: rgb(0, 0, 0);

    */
