.panel-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.iframe-size {
    max-width: 100%;
    height: 260;
}
@media only screen and (max-width: 576px) {
    .iframe-size {
        height: auto;
    }   
    
}

.album-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    padding: 15px;
}

.iframe-container {
    margin-right: 15px;
}

.album-details {
    text-align: center;
}

.album-details h2 {
    margin-bottom: 10px;
}

.album-details h3 {
    margin-bottom: 15px;
    color: #777;
}
#song-playlist{
    cursor: pointer;
}

.new-color:hover {
    background-color: #f23030; /* Change to a light blue color */
    color: white; /* Optional: Change text color */
    transition: background-color 0.3s ease;
  } 

  .new-color{
   background-color: #e8f1f1da;
  }
  @media only screen and (min-width: 767px) {
    .only-for-mobile{
        display: none;
    }
    .container{
        width: 100%;
    }
  }
  @media only screen and (max-width: 767px) {
    .only-for-mobile{
        margin-top: 100px;
    }
  }
