/* source: faerdighed\regningsarter\subtraktion.htm style block 1 */
.numbers-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 24px;
            margin-top: 20px;
        }

        .numbers, .loan {
            display: flex;
            justify-content: flex-end;
            gap: 8px; /* Reduceret afstand mellem cifrene */
            font-family: monospace;
            font-size: 32px;
            line-height: 1.1;
            width: 100%;
            max-width: 250px;
        }

        .loan {
            color: red;
            font-size: 24px; /* Gør lånetallet mindre */
            height: 30px;
            letter-spacing: -5px; /* Gør lånene tættere på hinanden */
        }

        .invisible {
            color: white; /* Holder pladsen uden at være synlig */
        }

        .underline {
            border-bottom: 2px solid black;
            width: 100%;
            margin-top: 5px;
        }

        .solution-container {
            margin-top: 20px;
            text-align: center;
            font-size: 18px;
        }

        .question {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
        }


