body {
  background-color: #f5f5f5;
}

.spacer-sm {
  height: 10px;
}

.spacer-md {
  height: 20px;
}

.spacer-lg {
  height: 40px;
}

/* Custom styles for Lost + Found homepage */
.hero.is-primary {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.hero.is-info {
  background: linear-gradient(135deg, #00d1b2, #41b883);
}

.box {
  transition: transform 0.2s ease-in-out;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-content {
  min-height: 150px;
}

.buttons .button {
  margin: 0 10px;
}

.section {
  padding: 3rem 1.5rem;
}

.fixed-card {
  height: 300px;
  /* adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.fixed-card-user {
  height: 380px;
}

.fixed-card .card-content {
  overflow-y: auto;
  /* adds scroll if text is too long */
}

.fixed-card .card-image img {
  object-fit: cover;
  height: 180px;
  /* fixed height */
  width: 100%;
}

.fixed-card .card-content p,
.fixed-card .card-content h2 {
  white-space: nowrap;
  /* keep text on one line */
  overflow: hidden;
  text-overflow: ellipsis;
  /* show "..." if too long */
}

.fixed-card-user .card-content p,
.fixed-card-user .card-content h2 {
  white-space: nowrap;
  /* keep text on one line */
  overflow: hidden;
  text-overflow: ellipsis;
  /* show "..." if too long */
}



.item-details p {
  margin-bottom: 0.5rem;  /* space between lines */
  font-size: 0.95rem;     /* slightly smaller than headers */
}
.item-details span {
  margin-left: 4px;
}