/* Auszugsrechner Plugin Styles – alle Klassen mit auszugsrechner-Präfix */

.auszugsrechner-wrap {
    margin: 2em auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    max-width: 640px;
}

.auszugsrechner-intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auszugsrechner-wrap label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.auszugsrechner-wrap input[type="number"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Buttons */
.auszugsrechner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.auszugsrechner-wrap button {
    padding: 0.875rem 1.25rem;
    background-color: #36a271;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1rem;
    line-height: 1;
}

.auszugsrechner-wrap button:hover {
    background-color: #2d8a5f;
}

#auszugsrechner-btn-anleitung {
    background-color: #e6e6e6;
    color: #333;
}

#auszugsrechner-btn-anleitung:hover {
    background-color: #d0d0d0;
}

/* Anleitungsbox */
.auszugsrechner-anleitung {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
}

.auszugsrechner-anleitung h3 {
    margin-top: 0;
    color: #333;
}

.auszugsrechner-anleitung-img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 0.5rem;
    display: block;
}

#auszugsrechner-btn-schliessen {
    background-color: #6c757d;
    margin-top: 1rem;
}

#auszugsrechner-btn-schliessen:hover {
    background-color: #5a6268;
}

/* Ergebnisbereich */
.auszugsrechner-ergebnis {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background-color: #f6f7f7;
    border-radius: 0.5rem;
    text-align: center;
}

.auszugsrechner-ergebnis h3 {
    margin-top: 0;
}

.auszugsrechner-ergebnis p {
    margin: 6px 0;
}

.auszugsrechner-hinweis {
    font-size: 0.9em;
    font-style: italic;
    margin-top: 15px !important;
    color: #555;
}

.auszugsrechner-hinweis strong {
    font-style: normal;
}

.auszugsrechner-fehler {
    color: #c0392b;
    font-weight: bold;
    min-height: 1.2em;
}
