body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 20px;
}

.top-search {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.dname {
  padding: 8px 12px;
  width: 100%;
  max-width: 250px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.ELR[type="button"] {
  padding: 8px 16px;
  background-color: #4caf50;
  color: white;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ELR[type="button"]:hover {
  background-color: #45a049;
}

.centered-boxes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.elr-reset-container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

@media (max-width: 400px) {
  .elr-reset-container {
    flex-wrap: wrap;
  }
}

.show-ELR {
  padding: 8px 12px;
  width: 250px;
  border: 1px solid #aaa;
  border-radius: 4px;
  background-color: #e9e9e9;
  color: #333;
  font-size: 14px;
  text-align: center;
}

.resetbutton {
  padding: 8px 16px;
  background-color: #f44336;
  color: white;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.resetbutton:hover {
  background-color: #da190b;
}

.button-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.button1 {
  display: inline-block;
  padding: 12px 25px;
  background-color: #800080;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  text-align: center;
  font-size: 14px;
}

.button1:hover {
  background-color: #a000a0;
}

input:focus {
  outline-color: #4caf50;
}
