        .calculator-card {
            background: white;
            width: 100%;
            max-width: 1000px; /* Трохи ширше для 2 стовпчиків */
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            font-family: "Open Sans", sans-serif;
        }

        h2 {
            text-align: center;
            color: #333;
            margin-bottom: 30px;
            margin-top: 0;
            font-weight: 700;
        }

        /* --- ЗАГАЛЬНІ СТИЛІ СІТКИ --- */
        .grid-section {
            display: grid;
            grid-template-columns: 1fr 1fr; /* 2 рівні колонки */
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .full-width {
            grid-column: 1 / -1; /* Елемент на всю ширину */
        }

        .section-title {
            grid-column: 1 / -1;
            font-size: 18px;
            font-weight: 600;
            color: #444;
            margin-bottom: 10px;
            border-left: 4px solid #007bff;
            padding-left: 10px;
        }

        /* --- ПОЛЯ ВВОДУ ТА ВИВОДУ --- */
        .input-wrapper {
            display: flex;
            flex-direction: column;
        }

        .input-wrapper label {
            font-size: 13px;
            font-weight: 600;
            color: #555;
            margin-bottom: 6px;
        }

        .styled-input, .styled-select {
            padding: 12px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
            width: 100%;
            box-sizing: border-box;
        }

        .styled-input:focus, .styled-select:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
        }

        /* Стиль для полів, що розраховуються (Read Only) */
        .read-only-field {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            color: #333;
            font-weight: bold;
            cursor: default;
        }
        
        .read-only-field.highlight-blue {
            color: #0056b3;
            background-color: #e8f4ff;
            border-color: #b8daff;
        }

        .limit-hint {
            font-size: 11px;
            color: #888;
            margin-top: 4px;
        }

        /* --- РАДІО КНОПКИ (СХЕМА) --- */
        .scheme-selector {
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: #fdfdfd;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 6px;
        }
        
        .radio-option {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
        }
        
        .radio-option input {
            margin-right: 10px;
            accent-color: #007bff;
            width: 16px; height: 16px;
        }

        /* --- БЛОК ФІНАЛЬНИХ ПІДСУМКІВ --- */
        .final-results-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
            background-color: #f1f8ff;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #d0e6ff;
        }

        .result-card {
            text-align: center;
        }

        .result-card label {
            display: block;
            font-size: 14px;
            color: #555;
            margin-bottom: 5px;
        }
        
        .result-card .value {
            font-size: 24px;
            font-weight: 800;
        }

        .result-card .value.apr { color: #0056b3; }
        .result-card .value.total { color: #28a745; }

        /* --- ТАБЛИЦЯ --- */
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            margin-top: 10px;
        }

        th, td {
            padding: 12px 15px;
            text-align: right;
            border-bottom: 1px solid #ddd;
        }

        th {
            background-color: #343a40;
            color: white;
            text-align: center;
            font-weight: 500;
        }
        
        td:first-child, th:first-child { text-align: left; }
        tr.final-payment { background-color: #e2e6ea; font-weight: bold; }

        /* --- АДАПТИВНІСТЬ --- */
        @media (max-width: 768px) {
            .grid-section, .final-results-grid {
                grid-template-columns: 1fr; /* Одна колонка на мобільному */
            }
        }