/* source: print\variablerprint.htm style block 1 */
body {
            font-family: Arial, sans-serif;
            margin: 20px;
            text-align: center;
        }
        .task-container, .solutions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
            page-break-after: always;
        }
        .task, .solution {
            border: 2px solid #ccc;
            border-radius: 10px;
            padding: 20px;
            text-align: left;
            font-size: 20px;
            line-height: 2.2;
            height: 120px; /* Giver plads til to linjer besvarelse */
        }
        .task span:first-child {
            font-size: 18px; /* Mindre tekst til første linje */
        }
        .task span.equation {
            font-size: 24px; /* Større tekst til ligningen */
            display: block;
            text-align: center;
            margin-top: 10px;
        }
        .solutions {
            transform: scaleX(-1); /* Spejlvend løsningen */
        }
        .solutions-title {
            margin-top: 40px;
            font-size: 28px;
            font-weight: bold;
        }
        @media print {
            .button-container {
                display: none;
            }
        }


