/* Exact copy of your original styles, just moved to external file */
.btn-view-album {
  background-color: white;
  color: black;
  border: 1px solid black;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  text-decoration: none;
  display: inline-block;
}

.btn-view-album:hover {
  background-color: black;
  color: white;
  border-color: black;
  text-decoration: none;
}

.btn-view-album:active,
.btn-view-album:focus {
  background-color: #333;
  color: white;
  border-color: #333;
  box-shadow: none;
  outline: none;
}

/* Card styles */
.card {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  transition: transform 0.2s ease;
}

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

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  background: white;
}