body{
    background-color: #f8f9fa;
    background-image:
        url('https://www.transparenttextures.com/patterns/white-wall-3.webp'),
        url('/img/backgrounds/white-wall-3.webp');
    background-repeat: repeat;
}

#searchContainer {
      margin: 2rem auto;
      max-width: 50rem;
      text-align: center;
    }

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #8a8d92;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(98, 98, 98, 0.25);
}

.btn:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

#searchInput {
    padding: 0.5rem;
    max-width: 50rem;
    font-size: var(--h3-font-size);
    line-height: 1.3rem;
}

#searchResults {
    margin-top: 2rem;
    max-width: 700px;  
    margin-left: auto;
    margin-right: auto;
}

.result {
    border-bottom: 1px solid #ccc;
    padding: 1rem 0;
    text-align: left;
}

.result a {
    font-weight: bold;
    color: #007BFF;
    text-decoration: none;
}

.result a:hover {
    text-decoration: underline;
}
