body{
    margin:0;
    font-family:Arial;
    background:#f1f2f6;
}

.container{
    padding:15px;
    max-width:600px;
    margin:auto;
}

h2{
    text-align:center;
}

input, textarea, select{
    width:100%;
    padding:14px;
    font-size:16px;
    margin-bottom:12px;
    border-radius:10px;
    border:1px solid #ccc;
    box-sizing:border-box;
}

textarea{
    min-height:120px;
}

button{
    width:100%;
    padding:16px;
    font-size:18px;
    border:none;
    border-radius:12px;
    background:#00b894;
    color:white;
}

button:active{
    transform:scale(0.98);
}

#map{
    height:250px;
    border-radius:12px;
    margin-bottom:15px;
}

/* Sticky Button (unten fixiert) */
.submit-bar{
    position:sticky;
    bottom:0;
    background:#f1f2f6;
    padding:10px 0;
}

/* Meldungen */
.msg{
    padding:12px;
    border-radius:10px;
    margin-bottom:10px;
    font-size:15px;
}

.error{background:#ffe6e6;color:#d63031}
.success{background:#e6ffed;color:#00b894}