
/* Align map and table */
.parent {
  /*margin: 1rem;
  padding: 2rem 2rem;*/
  text-align: top;
}
.child {
  display: inline-block;
  vertical-align: top;
  margin: 1rem;
}


<style>
.grid-container {
  display: grid;
  grid-template-columns: 66% 34%;
  padding: 2rem 2rem;
  margin: 1rem;
  border: 2px solid #000000
}
</style>


/* Responsive container wrapper */
.table-container {
  max-width: 100%;
  overflow-y: auto;
  overflow-x: auto;
  direction: rtl; 
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f3;
}

/* Base table styling */
.stylish-table {
  width: 100%;
  border-collapse: collapse; /* Merges cell borders */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  direction: ltr;
}

/* Header style styling */
.stylish-table thead tr {
  background-color: #009879; /* Vibrant primary accent color */
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Joint styling for header and body cells */
.stylish-table th,
.stylish-table td {
  padding: 14px 20px; /* Ample cell breathing room */
}

/* Subtle border lines between table rows */
.stylish-table tbody tr {
  border-bottom: 1px solid #dddddd;
  transition: background-color 0.2s ease; /* Smooth hover transition */
}

/* Zebra striping for enhanced data tracking */
.stylish-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Interactive hover feedback highlighting*/
.stylish-table tbody tr:hover {
  background-color: #f1f3f5;
  cursor: pointer;
} 

.hidden-column {
    display: none !important;
}

/* Soft accent finish on the last row 
.stylish-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}*/