@media (min-width: 781px) {
    .countryTableArea2 {
        width: 60%;
        margin-left: 65px;
        font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    }  
    .country-international-table { 
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.14);
    }

    /* Header */
    .country-international-table thead th {
      text-align: left;
      padding: 10px 12px;
      border-bottom: 2px solid #e6e6e6;
      font-weight: 600;
      background: rgb(10, 10, 142);
      color: white;
      font-weight: bold;
    }

    /* Body rows */
    .country-international-table tbody td {
      padding: 10px 12px;
      border-bottom: 1px solid #f0f0f0;
    }

    /* Zebra striping */
    .country-international-table tbody tr:nth-child(odd) {
      background: #ffffff;
    }
    .country-international-table tbody tr:nth-child(even) {
      background: #f5f5d5;
    }
 }

    /* Small responsive tweak */
@media (max-width: 780px) {
.countryTableArea2 {
  display: block;
  overflow-x: auto;
  width: auto;             /* don’t stretch full width */
  max-width: 100%;         /* prevent going past parent */
  margin-right: var(--section-gap, 15px); /* keep your page layout margin */
  padding-bottom: 6px;     /* space for scrollbar */
  font-family: "Manrope";
}
.countryTableArea2::-webkit-scrollbar {
  height: 8px;
}
.countryTableArea2::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}
  .country-international-table { 
    width: 100%;
    border: 3px solid white;
    font-size: 13px;
  }

  /* Header */
  .country-international-table thead th {
    text-align: left;
    padding: 5px 6px;
    background: rgb(10, 10, 142);
    color: white;
    font-weight: bold;
  }
  .country-international-table tbody td {
    padding: 5px 6px;
  }
  /* Zebra striping */
  .country-international-table tbody tr:nth-child(odd) {
    background: #ffffff;
  }
  .country-international-table tbody tr:nth-child(even) {
    background: #f5f5d5;
  }

}