  .dashboard-container {
    display: flex;
    flex-direction: column;
    margin-top: 1px;
    margin-left: 4%;
    width: 96%;
    align-items: center;
    justify-content: center;
  }
  .dashboard-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 10px;
  }
  .dashboard-box, .dashboard-statistics {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-basis: calc(33.333% - 20px);
    text-align: center;
  }
  .dashboard-chart {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-basis: calc(33.333% - 20px);
    height: 200px; /* Ajustar según necesidad */
  }
  @media (max-width: 768px) {
    .dashboard-row {
      flex-direction: column;
    }
    .dashboard-box, .dashboard-statistics, .dashboard-chart {
      flex-basis: 80%;
      margin-bottom: 20px;
    }
  }