.responsive-table { /* This is the responsive table used for displaying how we handle the data */
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
}

.table-cell {
  flex: 1 1 45%; 
  background-color: #fff;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 4px;
  box-sizing: border-box;
}

/* ------------------------- TABLE IN ADMIN USERS -----------*/
table {
  width: 80%;
  border-collapse: collapse;
  margin-top: 20px;
  font-family: 'Calibri', sans-serif;
  font-size: 16px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 4px;
  overflow: hidden;
}

th, td {
  padding: 12px 16px;
  text-align:left;
  border-bottom: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
}

th {
  background-color: #f2f2f2;
  font-weight: 600;
  color: #333;
}

tr:last-child td {
  border-bottom: none;
}