body
{
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #f4f4f4;
}

.container
{
    max-width: 500px;
    margin: auto;
}

input, button
{
    width: 100%;
    padding: 16px;
    font-size: 18px;
    box-sizing: border-box;
}

button.send
{
    margin-top: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
}

.button-row
{
    display: flex;
    justify-content: flex-end;
	gap: 10px;
    margin-top: 10px;
}

.nav-btn
{
    height: 56px;
    padding: 0 18px;
    border-radius: 28px;
    border: none;
    background: #6c757d;
    color: white;
    font-size: 16px;
    cursor: pointer;
}


.print-btn
{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: none;
    background: #28a745;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: right;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.print-btn svg
{
    width: 5px;
    height: 5px;
    fill: white;
}

.print-btn img
{
    width: 45px;
    height: 45px;
    object-fit: contain;
}


.result
{
    margin-top: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
}

/* Druck-Optimierung */
@media print
{
    body *
    {
        visibility: hidden;
    }
	svg
	{
        max-width: 100%;
    }
    #printArea, #printArea *
    {
        visibility: visible;
    }
    #printArea
    {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}
