html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.map {
    width: 100%;
    height: 100vh;
}

.map-overlay {
    position: absolute;
    z-index: 1000;
}

.search-overlay {
    top: 16px;
    left: 16px;
    width: min(360px, calc(100vw - 32px));
}

.status-overlay {
    bottom: 16px;
    left: 16px;
    width: min(420px, calc(100vw - 32px));
}

.search-box {
    background: rgba(255,255,255,0.96);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    overflow: visible;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 10px 10px 12px;
}

.search-row {
    position: relative;
    margin: 8px 6px;
}

.search-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

#cityInput,
#streetInput,
#numberInput {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    box-sizing: border-box;
}

#cityInput:disabled,
#streetInput:disabled,
#numberInput:disabled {
    background: #f6f6f6;
    color: #888;
}

.suggestions {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 2000;
    max-height: 180px;
    overflow-y: auto;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: #e9f3ff;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.search-actions {
    margin: 10px 6px 4px;
    text-align: right;
}

.search-btn {
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: #0f6b2f;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.search-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.status-box {
    background: rgba(255,255,255,0.96);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 15px;
    line-height: 1.45;
}

.status-ok {
    color: #0f6b2f;
    font-weight: bold;
}

.status-no {
    color: #9b1c1c;
    font-weight: bold;
}

.status-neutral {
    color: #333;
}

.status-warn {
    color: #b26a00;
    font-weight: bold;
}

.ol-zoom {
    right: 12px;
    left: auto;
    top: 12px;
}