body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}
header {
    background: #0066cc;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    margin-top: 0;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.box {
    background: #e9f2ff;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}

/* Baustellen-Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#overlay-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    animation: pop 0.3s ease-out;
}

#overlay-box h2 {
    margin-top: 0;
}

#close-overlay {
    margin-top: 20px;
    padding: 10px 20px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#close-overlay:hover {
    background: #004c99;
}

@keyframes pop {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Ort-Suche Stile */
.ort-suche-ergebnis {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    background: white;
    transition: background 0.2s;
}

.ort-suche-ergebnis:hover {
    background: #f0f8ff;
}

.ort-suche-ergebnis:last-child {
    border-bottom: none;
}

.ort-suche-keine, .ort-suche-fehler {
    padding: 12px;
    color: #666;
    text-align: center;
    font-style: italic;
}

.ort-suche-fehler {
    color: #cc0000;
}

#ort-suche-container {
    transition: all 0.3s ease;
}
