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;
}