/* com_kostenrechner - Frontend */
.kr-rechner {
    max-width: 640px;
}

.kr-seite-intro {
    max-width: 640px;
    margin-bottom: 1rem;
}

.kr-auswahl {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.kr-eingabe {
    max-width: 24rem;
    margin: 1rem 0;
}

.kr-auswahl label,
.kr-eingabe label {
    font-weight: 600;
    margin: 0;
}

.kr-auswahl select {
    max-width: 16rem;
    background-color: #951c18;
    color: #fff;
    border: 1px solid #951c18;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px 12px;
    padding-right: 2.25rem;
}

.kr-auswahl select:hover,
.kr-auswahl select:focus {
    background-color: #e8590c;
    border-color: #e8590c;
    color: #fff;
}

.kr-auswahl select option {
    background-color: #fff;
    color: #000;
}

.kr-stunden-wert {
    color: #951c18;
}

.kr-slider {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    accent-color: #951c18;
}

.kr-tipp {
    font-style: italic;
}

.kr-heading {
    margin-top: 1.5rem;
}

.kr-tabelle {
    width: 100%;
    max-width: 480px;
    border-collapse: collapse;
    margin: 0.75rem 0 1.25rem;
}

.kr-tabelle td,
.kr-tabelle th {
    padding: 0.3rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.kr-tabelle .kr-betrag {
    text-align: right;
    white-space: nowrap;
}

.kr-tabelle .kr-summe td,
.kr-tabelle .kr-summe th {
    border-top: 2px solid #606060;
    font-weight: 700;
}

.kr-tabelle .kr-gesamt td {
    border-top: 3px double #606060;
    font-size: 1.05em;
    font-weight: 700;
}

.kr-hinweis {
    font-weight: 600;
    color: #b02a37;
}

.kr-stand {
    color: #6c757d;
}
