body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Light grey background */
    margin: 0;
    padding-top: 30px; /* Gap at the top of the page */
    background-image: url('./images/background.png'); /* Updated image path */
    background-repeat: repeat; /* Ensure the background image repeats */
}

.container {
    border: 1px solid #ddd; /* Light grey border around results */
    padding: 20px;
    margin: 0 auto;
    max-width: 1000px; /* Limiting results wrapper to 1000 pixels */
    background-color: #fff; /* White background for results */
}

.row {
    display: flex;
    align-items: center;
    padding: 10px; /* Adjust padding as needed */
    margin-bottom: 10px; /* Adjust margin as needed */
}

.row.even {
    background-color: #f9f9f9; /* Light grey background for even rows */
}

.row.odd {
    background-color: #fff; /* White background for odd rows */
}

.song-number {
    width: 20px;
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
}

.song-name {
    flex-grow: 1;
    padding-right: 10px;
}

.links a {
    margin-right: 10px; /* Adjust spacing between links */
}

.links a img {
    width: 30px;
    height: 30px;
}

.banner {
    text-align: center;
    margin-bottom: 20px;
}

.banner img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 768px) {
    .banner img {
        width: 100%; /* Adjust width for mobile devices */
        height: auto;
    }
}
