body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.musikwunsch-container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.header {
    margin-bottom: 20px;
}

.home-link,
.logout-button {
    position: absolute;
    top: 10px;
}

.home-link {
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
}

.home-link img {
    width: 24px;
    height: 24px;
}

.logout-button {
    right: 10px;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.logout-button:hover {
    background-color: #555;
}

h1 {
    color: #f39c12;
    font-size: 36px;
    margin: 0;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    width: 80%;
    text-align: left;
    margin-bottom: 5px;
    font-size: 16px;
}

input[type="text"],
select {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

input[type="text"]::placeholder,
select {
    color: #888;
}

button {
    width: 200px; /* Gleiche Breite wie der Button auf der Startseite */
    height: 50px; /* Gleiche Höhe wie der Button auf der Startseite */
    margin: 20px 0;
    border-radius: 25px;
    border: none;
    background-color: #f39c12;
    color: white;
    font-size: 16px; /* Schriftgröße */
    font-family: 'Arial', sans-serif; /* Schriftart */
    font-weight: bold; /* Schriftstil */
    text-transform: uppercase; /* Text in Großbuchstaben */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e67e22;
}