.table-container {
	padding: 0rem;
	max-width: 100%;
	margin: 0 auto;
  }
  
  .responsive-table {
	width: 100%;
	border-collapse: collapse;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .responsive-table thead {
	background-color: #f8f9fa;
	font-weight: bold;
  }
  
  .responsive-table th {
	padding: 1rem;
	text-align: left;
	font-weight: 300;
	color: #333;
	border-bottom: 2px solid #dee2e6;
	font-weight: bold;
  }
  
  .responsive-table td {
	padding: 0.35rem;
	border-bottom: 1px solid #dee2e6;
	color: #444;
  }
  
  .responsive-table tbody tr:hover {
	background-color: #f8f9fa;
  }
  
  /* Mobile view styles */
  @media screen and (max-width: 768px) {
	.responsive-table thead {
	  display: none;
	  font-weight: bold;
	}
  
	.responsive-table tbody tr {
	  display: block;
	  margin-bottom: 1rem;
	  border: 1px solid #dee2e6;
	  border-radius: 8px;
	  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	}
  
	.responsive-table td {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 0.35rem 1rem;
	  border-bottom: 1px solid #eee;
	}
  
	.responsive-table td:last-child {
	  border-bottom: none;
	}
  
	.responsive-table td::before {
	  content: attr(data-label);
	  font-weight: 300;
	  color: #333;
	}
  }