/* Frontend styles for the Hafner BauKalk calculator */
#hafnerec-bauschaetzung-container {
    max-width: 700px;
    margin: 0 auto;
    font-family: sans-serif;
    background: #fff;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}
.hbk-step {
    margin-bottom: 20px;
}
.hbk-step h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: #222;
}
.hbk-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}
.hbk-chip {
    background: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hbk-chip:hover {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.hbk-chip.active {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.hbk-field {
    margin-bottom: 15px;
}
.hbk-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}
.hbk-field input[type="text"],
.hbk-field input[type="number"],
.hbk-field input[type="email"],
.hbk-field input[type="tel"],
.hbk-field select {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    box-sizing: border-box;
}
/* Wrapper fr Autocomplete, damit Dropdown direkt unter dem Input positioniert wird */
.hbk-autocomplete {
    position: relative;
}
.hbk-buttons {
    margin-top: 10px;
}
.hbk-next,
.hbk-submit {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
.hbk-next:hover,
.hbk-submit:hover {
    background: #006799;
}
.hbk-warning {
    color: #a00;
    font-style: italic;
    margin-top: 6px;
}
.hbk-equipment .hbk-checkbox {
    display: block;
    margin-bottom: 4px;
    font-weight: normal;
}
.hbk-checkbox input {
    margin-right: 6px;
}
/* Vorschlagsliste für Adresssuche – dezentes Dropdown ohne sichtbare Linie */
.hbk-suggestions {
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-height: 150px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}
.hbk-suggestions li {
    padding: 4px 6px;
    cursor: pointer;
}
.hbk-suggestions li:hover {
    background: #f0f0f0;
}
.hbk-status {
    margin-top: 10px;
    font-weight: bold;
}

/* Hinweistext für Formularabschnitte */
.hbk-note {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 10px;
}
