@media (min-width: 781px) {
    .countryTableArea3 {
        width: 30%;
        margin-left: 65px; 
        font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    }
    .country-civil-status-table { 
      width: 100%;
      border:3px solid white;
    }

    /* Header */
    .country-civil-status-table thead th {
      text-align: left;
      padding: 10px 12px;
      border-bottom: 2px solid #e6e6e6;
      font-weight: 600;
      background: #02343F;
      color:#F0EDCC;
      font-weight: bold;
    }

    /* Body rows */
    .country-civil-status-table tbody td {
      padding: 10px 12px;
      border-bottom: 1px solid #f0f0f0;
    }
    .country-civil-status-table tbody tr {
      background-color: #F0EDCC;
      color: #02343F;
    }
}

    /* Small responsive tweak */
@media (max-width: 780px) {
.countryTableArea3 {
    width: 98%;
    font-family: "Manrope";
}

.country-civil-status-table { 
  width: 100%;
  border: 3px solid white;
  font-size: 14px;
}

/* Header */
.country-civil-status-table thead th {
  text-align: left;
  padding: 5px 6px;
  background: #02343F;
  color:#F0EDCC;
  font-weight: bold;
}

/* Body rows */
.country-civil-status-table tbody td {
  padding: 5px 6px;
  border-bottom: 1px solid #f0f0f0;
}

.country-civil-status-table tbody tr {
    color: #02343F;
    background:#F0EDCC;
}

}