.container {
  padding-bottom: 20px;
}

.audiobook-card {
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  background: white;
  height: 100%;
}

.audiobook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.audiobook-header {
  display: flex;
  align-items: center;
}

.audiobook-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audiobook-icon img {
  width: 30px;
  height: 30px;
}

.audiobook-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.audiobook-details {
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
  font-size: 0.9rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.badge-author {
  background-color: var(--color-2) !important;
}

.badge-genre {
  background-color: var(--color-5) !important;
}

.new-audiobook-card {
  border: 2px dashed #ccc;
  min-height: 350px;
}

.plus-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
