body {
  font-family: "Nunito Sans", sans-serif;
}

.hidden {
  display: none;
}
.btn {
  border-radius: 2px;
}

.btn-outline-dark:hover {
  background-color: #001d31;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.grid div {
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 180px;
  word-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.grid img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 5px;
  cursor: pointer;
}
.filter-card img {
  max-width: 100px;
  float: right;
  margin-left: 10px;
}
.logo-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1rem;
}
.logo-container img {
  max-height: 50px;
  height: auto;
}
@media (max-width: 768px) {
  .logo-container {
    justify-content: center;
  }
  .logo-container img {
    max-height: 50px;
  }
}
.filter-banner {
  background-color: #fff3cd;
  color: #212529;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .filter-banner {
    flex-direction: row;
    margin-bottom: 20px;
  }
}

.banner-text {
  text-align: center;
  font-size: 1rem;
}

.banner-highlight {
  font-size: 1rem;
  font-weight: 700;
}

.alert-box {
  background: linear-gradient(135deg, #fffaf0, #ffe9cc);
  border: 2px solid #f5c16c;
  border-radius: 4px;
  text-wrap: balance;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  color: black;
  opacity: 0;
  transform: translateY(-10px);
  animation: slideFadeIn 0.6s ease forwards;
}

.alert-box span {
  color: #d35400;
  margin-right: 0.25rem;
}

.alert-box strong {
  color: #b33a00;
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
