/* Preiskalkulator Kurzzeitpflege kurz-uebersicht.htm */
    .price-calculator {
        max-width: 800px;
        margin: 40px auto;
        padding: 30px;
        background-color: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        font-family: Arial, sans-serif;
    }

    .price-calculator__inner {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .price-calculator__form {
        flex: 1;
        min-width: 300px;
    }

    .price-calculator__result {
        flex: 1;
        min-width: 300px;
        background-color: white;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .calculator-title {
        color: #2c3e50;
        margin-top: 0;
        margin-bottom: 25px;
        font-size: 24px;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #34495e;
    }

    .form-select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        background-color: white;
        transition: border-color 0.3s;
    }

    .form-select:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    }

    .result-header {
        color: #2c3e50;
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 22px;
    }

    .result-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

    .result-table tr {
        border-bottom: 1px solid #eee;
    }

    .result-table tr:last-child {
        border-bottom: 2px solid #3498db;
        font-weight: bold;
    }

    .result-table td {
        padding: 12px 8px;
    }

    .result-table td:last-child {
        text-align: right;
        font-weight: 600;
    }

    .result-amount {
        font-size: 24px;
        color: #27ae60;
        font-weight: bold;
        text-align: center;
        margin: 25px 0;
        padding: 15px;
        background-color: #f8fff9;
        border-radius: 5px;
        border: 1px dashed #27ae60;
    }

    .info-box {
        background-color: #e8f4fc;
        border-left: 4px solid #3498db;
        padding: 15px;
        margin: 20px 0;
        border-radius: 3px;
        color: #0c5460;
        font-size: 14px;
    }

    .cta-button {
        display: inline-block;
        background-color: #3498db;
        color: white;
        padding: 14px 28px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        font-size: 16px;
        transition: background-color 0.3s;
        text-align: center;
        width: 100%;
        border: none;
        cursor: pointer;
        margin-top: 10px;
    }

    .cta-button:hover {
        background-color: #2980b9;
    }

    .price-note {
        text-align: center;
        margin-top: 15px;
        color: #666;
        font-size: 14px;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .price-calculator__inner {
            flex-direction: column;
        }

        .price-calculator {
            padding: 20px;
        }
    }