body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #fafafa;
}

/* Karte – kleiner & handlicher */
#map {
    width: 100%;
    height: 55vh !important;   /* statt 500px → mobile handlicher */
    min-height: 260px;
    max-height: 450px;         /* auf Desktop nicht zu groß */
    margin-bottom: 20px;
}

/* Eingabefelder + Button */
.form input,
.form button {
    padding: 12px 16px;
    margin: 5px;
    font-size: 18px;            /* größer & besser lesbar */
}

/* Nur der Button „Kerze setzen“ */
.form button {
    background-color: #002D72;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.form button:hover {
    background-color: #0040A0;
}

/* Counter fett & rot */
.counter {
    font-size: 22px;
    margin-bottom: 10px;
    color: red;
    font-weight: bold;
}