
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
      color: #333;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }

    h1 {
      text-align: center;
      color: #4caf50;
    }

    .chart-card {
      background-color: #fff;
      max-width: 1200px;
      padding: 20px;
      margin: 20px 0;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .chart-card h3 {
      text-align: center;
      color: #4caf50;
    }

    @media (max-width: 768px) {
      .chart-card {
        flex: 1 1 100%;
      }
    }
 
.general-cards-container {
  display: flex;
  justify-content: space-between; /* Space between cards */
  gap: 10px; /* Add space between cards */
}

.general-card {
  flex: 1 1 calc(33.33% - 10px); /* Ensure three cards fit in one row */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  padding: 10px;
  text-align: center;
  max-width: 100%; /* Prevent overflow */
  box-sizing: border-box;
}

.general-card h3 {
  font-size: 1.5rem;
  color: #4caf50;
  margin-bottom: 10px;
}

.general-card p {
  font-size: 1.2rem;
  color: #333;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .general-cards-container {
    flex-direction: column; /* Stack cards vertically on smaller screens */
  }
  .general-card {
    flex: 1 1 100%; /* Cards take full width on small screens */
  }
}


/* Top Formations Section */
.top-formations-container {
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.formation-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formation-card {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
}

.formation-card h3 {
  font-size: 1.5rem;
  color: #4caf50;
  margin-bottom: 10px;
}

.formation-card table {
  width: 100%;
  border-collapse: collapse;
}

.formation-card th,
.formation-card td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

.formation-card th {
  background-color: #4caf50;
  color: #fff;
}

.formation-card td {
  color: #555;
}


/* General Data Section */
.general-data-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
  padding: 6px;
  vertical-align: top;
}

/* Section Titles */
.section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: #333;
}

/* Card Container */

.general-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px auto;
  justify-content: space-around;
}

.general-card {
  flex: 1 1 calc(33.33% - 20px); /* Each column takes 1/3 of the row */
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  max-width: 100%; /* Ensure it doesn't overflow */
}

.general-card h3 {
  font-size: 1.5rem;
  color: #4caf50;
  margin-bottom: 10px;
}

.general-card p {
  font-size: 1.2rem;
  color: #333;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .general-card {
    flex: 1 1 calc(50% - 20px); /* Adjust to 2 columns on smaller screens */
  }
}

@media (max-width: 480px) {
  .general-card {
    flex: 1 1 100%; /* Stack cards vertically on very small screens */
  }
}



.run-pass-split-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
}

.chart-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.donut-chart {
  flex: 1 1 calc(50% - 10px); /* Two charts per row */
  min-width: 300px;
  height: 300px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .chart-row {
    flex-direction: column;
  }

  .donut-chart {
    flex: 1 1 100%; /* Full width for smaller screens */
  }
}

.area-chart-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

@media (max-width: 768px) {
  .chart-row {
    flex-direction: column; /* Stack charts vertically on smaller screens */
  }

  .chart-card {
    max-width: 100%; /* Full width when stacked */
  }
}

.chart-row {
  display: flex;
  justify-content: space-around;
  gap: 20px; /* Add spacing between cards */
  margin-bottom: 20px;
}

.chart-card {
  flex: 1;
  /*max-width: 48%;  Ensure two charts fit in one row */
  /*background: #1e1e1e;  Dark card background */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
  padding: 20px;
  text-align: center;
  color: #ffffff; /* White text for titles */
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  border-radius: 10px; /* Rounded corners */
}

th,
td {
  padding: 15px;
  background-color: rgba(255,255,255,0.4);
  color: #000;
}

th {
  text-align: center;
}

thead {
  th {
    background-color: #0008ff;
    color: white;
  }
}

tbody {
  tr {
    &:hover {
      background-color: rgba(255,255,120,0.3);
    }
    &:nth-child(odd) {
      background-color:#d4d4d6
    }  
  }
  td {
    position: relative;
    &:hover {
      &:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -9999px;
        bottom: -9999px;
        background-color: rgba(255,255,255,0.2);
        z-index: -1;
      }
    }
  }
}