body {
    font-family: 'Poppins', sans-serif;
    background-color: #0b0b0b;
    color: #efefef;
    margin: 0;
    padding: 20px;
    text-align: center;
}

#app {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, select {
    padding: 10px;
    border: 1px solid #efefef;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #efefef;
}

#stats {
    text-align: center;
}

#listeningTime {
    font-size: 2rem;
    font-weight: bold;
    color: #34b157;
}

ol {
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
}

ol li {
    margin-bottom: 10px;
}
.song-list {
    list-style: none;
    padding: 0;
}

.song-list li {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.song-list .thumbnail {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 8px;
    object-fit: cover;
}

