  *{
    font-family: 'Poppins, sans-serif';
  }
  /* Container to stay same as before */
  .dropdown-container {
      display: flex;
      align-items: start;
      justify-content: space-evenly;
      gap: 2px;
      padding: 20px;
      width:100%;
      background: linear-gradient(to bottom, #e8edeb, #f8f8f8);
      border-radius: 10px;
  }

  /* Make Select2 look like the original select box */
  .select2-container--default .select2-selection--single {
      width: 100% !important; /*fixed width like before*/
      height: auto;
      padding: 12px 16px;
      border: 2px solid #ccc;
      border-radius: 25px;
      background: white;
      font-size: 16px;
      font-family: Arial, sans-serif;
      cursor: pointer;
      box-sizing: border-box;
  }

  /* Style the rendered text inside the box */
  .select2-container--default .select2-selection--single .select2-selection__rendered {
      color: #333;
      padding-left: 4px;
      line-height: 28px;
  }

  /* Style the arrow */
  .select2-container--default .select2-selection--single .select2-selection__arrow {
      height: 100%;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: grey;
  }

  /* Style the "Browse" button */
  .browse-btn {
      background-color: #2d4e9d;
      color: white;
      font-size: 16px;
      padding: 12px 24px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-style: italic;
      transition: background 0.3s ease;
  }

  .browse-btn:hover {
      background-color: #2d4e9d;
  }


  #reports-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #reports-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
  }

  #reports-container table {
    border-collapse: collapse;
    width: auto;
    margin: 0 auto;
  }

  #reports-container table, #reports-container th, #reports-container td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
  }

  #reports-container th {
    background-color: #f4f4f4;
    font-weight: bold;
  }


  /* new indicators styling */
  .all-indicators{
    background-color: lightgray;
    display: grid;
    grid-template-columns: 1fr 3fr;
    padding: 20px 80px;
    font-family: 'Poppins', sans-serif;

  }
  .indicator-sector{
    margin-top: 20px;
  }
  .indicator-sector button{
   color:#0091ea;
   background-color: white;
   font-size: 18px;
   border-radius: 5px;
   display: block;
   margin-bottom: 10px;
   border: none;
   padding:5px 15px ;
   width: 90%;
   text-align: left;
   font-family: 'Poppins, sans-serif';
  
  }

  .indicator-sector:hover{
    cursor: pointer;
    background-color:#0091ea ;
    color:white;
  }
  .indicator-sector-filter {
      margin: 20px 0;
  }

  #survey {
      padding: 10px;
      font-size: 16px;
      border-radius: 8px;
      background-color: #0091ea; 
      color: #fff; 
      width: 100%;
  }
.indicator-list-grid{
  display: grid;
  grid-template-columns:repeat(2, 1fr);
  font-family: 'Poppins, sans-serif';
  gap:10px;
}

.indicator-list a{
  color:#333;
  text-decoration: none;
  font-size: 16px;
  background-color: transparent;
}
  .indicator-list :hover{
  cursor: pointer;
  color:#0091ea;
  text-decoration: underline;   
}
/* trying to enhance the searching option in the indicators */
#indicator-filter-input {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  background-color: #0091ea; 
  color: #fff; 
  width: 100%;
}
#indicator-filter-input::placeholder {
      color: #ffffff;
      opacity: 1; /* ensures full opacity on some browsers */
  }

/* Base grid already defined: 1fr 3fr for desktop */
@media (max-width: 1024px) {
    /* Tablet screens */
    .all-indicators {
        grid-template-columns: 1fr; /* Single column */
        padding: 20px;
    }

    .indicator-list-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns for tablet */
        gap: 8px;
    }

    .indicator-sector button {
        width: 100%; /* Buttons take full width */
        font-size: 16px;
    }

    #indicator-filter-input,
    #survey {
        font-size: 14px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    /* Mobile portrait */
    .all-indicators {
        grid-template-columns: 1fr; /* Single column */
        padding: 15px;
    }

    .indicator-list-grid {
        grid-template-columns: 1fr; /* Single column for cards */
        gap: 6px;
    }

    .indicator-sector button {
        font-size: 14px;
        padding: 8px;
    }

    #indicator-filter-input,
    #survey {
        font-size: 14px;
        padding: 8px;
    }
}

@media (min-width: 1600px) {
    /* Extra large screens */
    .all-indicators {
        grid-template-columns: 1fr 4fr; /* wider right column */
        padding: 40px 120px;
    }

    .indicator-list-grid {
        grid-template-columns: repeat(3, 1fr); /* more cards per row */
        gap: 12px;
    }

    .indicator-sector button {
        font-size: 20px;
        padding: 10px 20px;
    }
}

