/* Table styles */
.table-fill {
  margin: 0 auto;
  max-width: 800px;
  background: #fff;
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.table-fill td {
  padding: 12px;
  border: 1px solid #e0e0e0;
  text-align: left;
  font-size: 16px;
  color: #333;
}

.table-fill .text-left {
  font-weight: bold;
}

.table-fill .text-right {
  font-style: italic;
}

/* Table header styles */
.table-fill thead {
  background: #3498db;
  color: #fff;
  font-weight: bold;
}

.table-fill th {
  padding: 12px;
  text-align: left;
  font-size: 16px;
}

/* Table row styles */
.table-fill tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}






/* Centered text */
.center {
  text-align: center;
}

/* Hover effect */
.table-fill tbody tr:hover {
  background-color: #e0e0e0;
  transition: background-color 0.3s;
}

/* Custom CSS for the form and footer */
container {
 margin-top: 30px;
}
col-sm-3 {
 padding: 20px;
 background: #f9f9f9;
 border: 1px solid #e0e0e0;
 border-radius: 5px;
 text-align: center;
}
form-inline {
 margin-top: 10px;
 text-align: center;
}
form-control {
 width: 70%;
}
btn {
 margin-left: 10px;
}

.mu-footer {
  background: #3498db;
  color: #fff;
  padding: 20px 0;
}

.mu-footer a {
  color: #fff;
}

.mu-footer-bottom {
  background: #333;
  color: #fff;
  padding: 10px 0;
}

/* Add more CSS styles as needed */
