input {
    margin: 0;
    width: 1000px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-align: center;
    color: black;
    font-family: 'Outfit', Arial, sans-serif; /* Schriftart explizit setzen */
}


.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Neu: auch vertikal zentrieren */
    min-height: 100vh;       /* Neu: volle Höhe für vertikale Zentrierung */
    gap: 16px;
}

body {
    height: 100vh;
    margin: 0;
    font-family: 'Outfit', Arial, sans-serif;
    /* Entferne display: flex, justify-content, align-items */
}


button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 100px;
    background-color: black;
    color: white;
    font-family: 'Outfit', Arial, sans-serif;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    margin: 0;
    font-family: 'Outfit', Arial, sans-serif;
}

button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/static/Outfit-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


select {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: white;
    color: black;
    font-family: 'Outfit', Arial, sans-serif;
}

.top-right-link {
    position: fixed;
    top: 20px;
    right: 30px;
    text-decoration: none;
    color: #0056b3;
    font-size: 18px;
    font-family: 'Outfit', Arial, sans-serif;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 100;
    transition: background-color 0.3s ease;
}

.top-right-link:hover {
    background-color: #f0f0f0;
    color: #003d80;
}

h1 {
    font-family: 'Outfit', Arial, sans-serif;
    color: black;
    margin-bottom: 20px;
    margin: 10px;
    text-align: left;
}

p {
    font-family: 'Outfit', Arial, sans-serif;
    color: black;
    text-align: left;
    margin: 10px;
}

@media (max-width: 600px) {
    input, select {
        width: 90vw;
        font-size: 18px;
        padding: 12px;
    }

    button {
        max-width: 90vw;
        width: auto;
        font-size: 18px;
        padding: 12px 0;
        min-width: 120px;
    }

    .center-container {
        gap: 12px;
    }


    .top-right-link {
        top: 10px;
        right: 10px;
        font-size: 16px;
        padding: 6px 12px;
    }
}

