
/* Reset default margin and padding for body */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
}

/* Center the header text and apply styles */
h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  text-shadow: 2px 2px #ccc;
}

/* Style the search bar */
input[type="text"] {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
}



/* Style the "Show All Elements" button */
button {
  padding: 8px 16px;
  background-color: #00bfff; /* Light blue color */
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s, box-shadow 0.3s; /* Added transition for box-shadow */
}

button:hover {
  background-color: #0099cc; /* Slightly darker shade of light blue */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Box shadow only on hover */
}

button:focus {
  outline: none; /* Remove the default focus outline */
}

/* Style the label for the search bar */
label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Style the select element (if you have any) */
select {
  margin: 20px 50px 20px 50px;
  padding: 8px;
  font-size: 14px;
}

/* Style the data table */
table {
  margin: 20px 10px 0 10px;
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #333;
}

tr {
  height: 50px; /* Set a fixed height for each row */
}

td {
  vertical-align: middle; /* Center the content vertically */
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #e1e1e1;
}

h1 {
  margin-top: 150px;
}

.labelfordataTables {
  padding-left: 50px;
  padding-right: 100px;
}



