

.short_movie_player {
    /*width: 800px;*/
    /*height: 450px;*/
    min-width: 0;
    width: 412px;
    /*margin: 4rem auto;*/
    margin:0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.album_section {
    display: flex;
    flex-direction: row;   
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

.album_subsection {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 412px;
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

.album-player {

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;

  width: 100%;
  color: white;
  border-radius: 15px;
  font-family: sans-serif;
}

.album-header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;

  width: 100%;
  height: 35%;
  background-color:  #3f3f3f ;
  border-radius: 15px 15px 0 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.album-header-top{
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;

}

.album-body{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65%;
  background-color: #2c2c2c;
  border-radius: 0 0 15px 15px;
}


.album-cover {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 1rem;
}

.big-album-cover {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.album-info{
  width: 60%;
}

.album-info h2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  font-size: 1.2rem;
  margin: 0;
}

.album-info p {
  margin: 0.2rem 0;
  color: #aaa;
}

.play-btn {
  background: none;
  cursor: pointer;
  border: none;
  padding: 0.5rem 0rem;
  font-size: 1.2rem;
  border-radius: 50%;
  color: #2c2c2c;
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

.track-list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 96%;
  height: 95%;
  overflow-y: auto;
  overflow-x: clip;
  scrollbar-width: auto;
}

.track {
  width: 95%;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: background 0.3s;
  cursor: pointer;
  border-radius: 10px;
  padding-right: 0px;
}

.track:hover  {
  background-color: rgba(31, 31, 31, 0.274)
}


.active-track {
  background-color: rgba(31, 31, 31, 0.274);
}

.timecode{
  text-align: right;
  width: 85%;

}

.seekbar-container {
  user-select: none;
  width: 85%;
  height: 8px;
  background-color: #4d4d4d;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.seekbar {
  width: 0px;
  height: 8px;
  background-color: #ddd ;
  border-radius: 4px;
  z-index: -1;
}

.seekbar-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ddd;
  pointer-events: none;
}

.track-number {
  width: 30px;
  height: 30px;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  transition: opacity 0.2s;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}




.track-info {
  flex-grow: 1;
  margin-left: 10px;
}

.track-title {
  display: block;
  font-weight: bold;
  color: #fff;
}

.track-artist {
  font-size: 0.9em;
  color: #aaa;
}

.track-duration {
  color: #ffffff;
  font-weight: bold;
  min-width: 50px;
  text-align: left;
}

