body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
        background-color: #111013;
	}
        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }
        .logo {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
        }
        h1 {
            text-align: center;
            color: #333;
        }
        form {
            margin-bottom: 20px;
        }
        label {
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
        }
        input[type="text"] {
            width: 92%;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
text-align: center;
        }
        button[type="submit"] {
            background-color: #007bff;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        .last-song {
            background-color: #f0f0f0;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        .last-song p {
            margin: 0;
	text-align: center;
        }
        .last-song ul {
            list-style-type: none;
            padding: 0;
        }
        .last-song li {
            margin-bottom: 5px;
	text-align: center;
        }
        .spacer {
            margin-bottom: 20px;
        }
        .success-box {
            background-color: #7FFF00;
            color: #000;
            padding: 10px;
            margin-top: 20px;
            text-align: center;
            border-radius: 5px;
        }
/* Suggestions container */
.suggestions {
    max-height: 200px; /* Limit height to prevent overflowing */
    overflow-y: auto; /* Add scrollbar if content exceeds max-height */
    border: 1px solid #b4b4b4; /* Same border as suggestions */
    border-radius: 5px; /* Add a bit of roundness */
    padding: 10px; /* Add some padding inside */
	background: black;
}

/* Individual suggestion */
.suggestion {
   
    justify-content: space-between;
    margin-bottom: 5px;
    padding: 10px;
    border: 1px solid #9c9c9c;
    cursor: pointer;
	background: black;
    color: #fffefc;
}

.suggestion:hover {
    background-color: #ffba00;
}
.last-song li {
   justify-content: space-between;
    margin-bottom: 5px;
    padding: 7px;
    border: 1px solid #9c9c9c;
    cursor: pointer;
}
/* No need for .artist-title, instead use .artist and .title */
.artist,
.title {
    flex: 5;
}