body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff; /* Białe tło */
    color: #333333; /* Ciemny kolor tekstu */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.header {
    width: 100%;
    background-color: #000000; /* Czarna belka */
    color: #FFD700; /* Żółty napis */
    text-align: left;
    padding: 15px 20px;
    font-size: 24px;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0; /* Dostosowanie do stałej belki */
    padding: 20px;
    display: flex;
    flex-direction: column; /* Układ w kolumnie */
    align-items: center;
}

.song-list ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
}

.song-list li {
    background-color: #f0f0f0; /* Jasnoszare tło */
    color: #333333;
    margin: 5px 0;
    padding: 12px;
    border-radius: 8px;
    font-size: 18px;
    text-align: left; /* Wyrównanie tekstu do lewej */
    transition: background-color 0.3s;
}

.song-list li a {
    color: #333333;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.song-list li:hover {
    background-color: #e0e0e0; /* Ciemniejszy odcień szarości przy najechaniu */
}

.song-lyrics {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #333333;
    line-height: 1.6;
    margin-top: 20px;
}

.song-lyrics p {
    margin: 10px 0;
    font-size: 16px;
}
