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

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

        .remainder-container {
            display: flex;
            justify-content: flex-start; /* Sørger for at resterne står over de rigtige tal */
            font-family: monospace;
            font-size: 24px;
            width: 100%;
            max-width: 350px;
            position: relative;
            height: 30px; /* Giver luft over tallene */
            padding-left: 15px; /* Justerer resterne så de står præcist over cifrene */
        }

        .remainder {
            color: blue;
            position: relative;
            top: -10px;
            margin-right: 14px; /* Sørger for, at resterne står HELT tæt sammen */
        }

        .remainder-label {
            font-size: 20px;
            color: black;
            margin-left: 10px; /* Afstand mellem rester og pil */
        }

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

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


