body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../images/background.png');
    background-size: 500px 500px;
}

.container {
    width: 1000px;
    margin: 20px auto;
    padding: 0 15px; /* Added 15px padding on left and right */
    border: 1px solid #ccc; /* Light grey border */
    background-color: rgba(255, 255, 255, 0.8); /* 20% transparent white background */
}

h1 {
    text-align: center;
    font-size: 2em;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
}

.song-list {
    list-style-type: none;
    padding: 0;
}

.song-item {
    padding: 10px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between; /* Ensures search links are centered */
    align-items: center; /* Aligns vertically center */
}

.song-item:nth-child(even) {
    background-color: #f2f2f2; /* Light grey background for even rows */
}

.search-links {
    display: flex;
    justify-content: center; /* Centers the search links */
    gap: 10px; /* Adds space between search links */
}

.search-links a {
    display: inline-block; /* Ensures each link is on a separate line */
}

.top-banner, .bottom-banner {
    text-align: center;
    margin: 20px 0; /* Adjusted margin for spacing */
}

.footer {
    text-align: center;
    margin-top: 20px;
    clear: both;
}
