.records {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  padding: 15px;
  border-radius: 5px;
}

.records h2 {
  font-size: 1.2em;
  font-weight: 500;
  color: black;
  margin: 20px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.records a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f23dc;
  padding: 8px 10px;
  margin-bottom: 8px;
  text-decoration: none;
  border-left: 3px solid #ddd; 
  transition: background-color 0.2s ease-in-out;
  background-color: #fff;
}

.records a:hover {
  background-color: #f0f0f0;
  color: #007bff;
  border-left-color: #007bff;
}
