.container {
  padding-bottom: 20px;
}


.genre-card {
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  background: white;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;  
  word-break: break-word;
  overflow-wrap: anywhere;
}

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

.genre-header {
  display: flex;
  align-items: center;
  width: 100%;
}

.genre-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: white;
  overflow: hidden;
}

.genre-icon svg {
  max-width: 70%;
  max-height: 70%;
}
.genre-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.new-genre-card {
  border: 2px dashed #ccc;
}

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

.plus-sign {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}