body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: transparent;
    /*border-radius: 12px;*/
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ccc;
    /*margin-bottom: 20px;*/
}

.tabs button {
    flex: 1;
    padding: 20px 30px; /* Increase padding for larger buttons */
    background-color: #e3e3e3;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem; /* Increase font size */
    text-align: center;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.tabs button.active {
    background-color: #fff;
    border-bottom: 2px solid #2c3e50;
}

.tabs button:hover {
    background-color: #d4d4d4;
}


.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #e3e3e3;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

li:hover {
    background-color: #d4d4d4;
}

li audio {
    width: calc(100% - 180px);
}

audio {
    width: 50%;
}

.song-title {
    display: inline-block;
    width: 50%;
    font-size: 1em; /* Optional: Adjust as needed */
    text-align: left; /* Align text in the left half */
    vertical-align: middle; /* Optional: Align with audio element */
}


@media (max-width: 600px) {
    .container {
        margin: 10px auto;
        padding: 10px;
    }

    li {
        flex-direction: column;
        align-items: flex-start;
    }

    li audio {
        width: 100%;
        margin-top: 10px;
    }

    .song-title {
        margin-bottom: 5px;
    }
}