@charset "UTF-8";
.carousel {
  width: 100%;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: grab;
  touch-action: pan-y; /* επιτρέπει κάθετο scroll στη σελίδα */
}

.carousel:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* 3 στοιχεία σε προβολή */
.carousel-slide {
  flex: 0 0 33.3333333333%;
}

/* demo περιεχόμενο: αντικατάστησέ το με δικό σου */
.card {
  max-width: 340px;
  height: 453.6px;
  margin: 6px;
  border-radius: 10px;
  background: #8f0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  padding: 20px;
}
.card .album {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card .album .title {
  text-align: center;
  margin-bottom: 14px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.card .album .cover img {
  pointer-events: none;
}
.card .album .buttons {
  width: 100%;
}
.card .album .buttons .details {
  height: 40px;
  width: 100%;
  text-align: center;
  background-color: rgb(84, 1, 1);
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.card .album .buttons .details:hover {
  background-color: rgb(95, 1, 1);
}/*# sourceMappingURL=carousel.css.map */