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

        .numbers {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            font-family: monospace;
            font-size: 32px;
            line-height: 1.1;
            width: 100%;
            max-width: 350px;
        }

        .annotation {
            font-size: 20px;
            color: black;
            margin-right: 80px; /* Skubber parentes-tallene langt til venstre */
            min-width: 140px; /* Holder kolonnen stabil */
            text-align: right;
        }

        .blue {
            color: blue;
        }

        .red {
            color: red;
        }

        .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;
        }

        .plus {
            font-size: 32px;
            font-weight: bold;
            margin-left: 40px; /* Skubber + lidt til højre, så det ikke overlapper parenteserne */
        }

        .row {
            display: flex;
            justify-content: space-between;
            width: 100%;
            max-width: 350px;
        }

        .plus-row {
            display: flex;
            justify-content: flex-end;
            max-width: 350px;
            margin-top: -40px; /* Rykker + en linje op */
            font-size: 32px;
            font-weight: bold;
        }


