.the-container {
  width: 100%;
  /*max-width: 1200px;*/
  margin: 0 0 0 0;
  box-sizing: border-box;
  padding: 0 !important;
}

.the-row {
  padding: 0 !important;
}

.the-row::after {
  content: "";
  display: table;
  clear: both;
}

.the-column {
  box-sizing: border-box;
  float: left;
  padding: 0 !important;
}

/* Define 12 columns */
.the-col-1 {
  padding: 0 !important;
  width: 8.33%;
}

.the-col-2 {
  padding: 0 !important;
  width: 16.66%;
}

.the-col-3 {
  padding: 0 !important;
  width: 25%;
}

.the-col-4 {
  padding: 0 !important;
  width: 33.33%;
}

.the-col-5 {
  padding: 0 !important;
  width: 41.66%;
}

.the-col-6 {
  padding: 0 !important;
  width: 50%;
}

.the-col-7 {
  padding: 0 !important;
  width: 58.33%;
}

.the-col-8 {
  padding: 0 !important;
  width: 66.66%;
}

.the-col-9 {
  padding: 0 !important;
  width: 75%;
}

.the-col-10 {
  padding: 0 !important;
  width: 83.33%;
}

.the-col-11 {
  padding: 0 !important;
  width: 91.66%;
}

.the-col-12 {
  padding: 0 !important;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .the-column {
    width: 100%;
  }

  .the-col-1,
  .the-col-2,
  .the-col-3,
  .the-col-4,
  .the-col-5,
  .the-col-6,
  .the-col-7,
  .the-col-8,
  .the-col-9,
  .the-col-10,
  .the-col-11,
  .the-col-12 {
    padding: 0 !important;
    width: 100%;
  }
}

/* Updated styling to match The Sandbox theme */
.the-column {
  background-color: transparent;
  /* Light gray background similar to the content boxes */
  padding: 0px !important;
  margin: 0px;
  border: 0px solid #e5e6e6;
  /* Subtle border color */
}

/* Updated flex container styling */
.the-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.the-flex-box {
  flex: 1 1 calc(33.33% - 20px);
  margin: 10px;
  background-color: #f5f6f7;
  /* Light gray background matching the content boxes */
  padding: 20px;
  text-align: center;
  border: 1px solid #e5e6e6;
  /* Subtle border color */
  border-radius: 8px;
  /* Adding slight rounding to match the design */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  /* Subtle shadow */
}

/* Accent colors from The Sandbox theme */
.the-accent {
  color: #00adef;
  /* Blue color from the logo */
}

.the-button {
  background-color: #00c65e;
  /* Green color from the "More..." button */
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.the-button:hover {
  background-color: #00b355;
  /* Slightly darker green for hover state */
}

.the-header {
  color: #333;
  /* Dark text color for headers */
  font-weight: bold;
}

.the-value {
  color: #000;
  /* Black text for values/numbers */
  font-weight: bold;
}

.the-positive {
  color: #00c65e;
  /* Green for positive values */
}

@media (max-width: 900px) {
  .the-flex-box {
    flex: 1 1 calc(50% - 20px);
    /* Two columns on medium screens */
  }
}

@media (max-width: 600px) {
  .the-flex-box {
    flex: 1 1 100%;
    /* One column on small screens */
  }
}