.song {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 10px;

}

.song-info {
    display: flex;
    flex-direction: row;
    flex: 1;
    margin-right: 20px;
}

.song-name {
    text-align: left;
    font-size: 1.2em;
    margin-bottom: 5px;
    font-weight: bold;
}

.song-duration,
.song-listeners,
.song-artist,
.song-rank {
    text-align: left;
    margin: 5px;
}

.song-lyric {
    text-align: left;
    font-style: italic;
    font-size: 1.5em;
    /* Adjust the font size as needed */
    color: #285164;
    /* Change the color to your preference */
    background-color: #f0f0f0;
    /* Optional: Add a background color */
    padding: 5px;
    /* Optional: Add padding for better visual separation */
    border-radius: 5px;
    /* Optional: Add rounded corners */

}

.song-link {
    display: inline-block;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.song-link:hover {
    background-color: #0056b3;
}

.song-image {
    display: flex;
    flex-direction: column;
}

.song-image img {

    align-self: center;

    margin: auto;
    margin-top: 5px;
    max-width: 50%;
    object-fit: contain;
}