/* source: faerdighed\brokregning\brokgange.htm style block 1 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

        body {
            font-family: "Noto Sans", sans-serif; /* Bedre understøttelse af æ, ø og å */
        }
        .container {
            background-color: #e6f7ff; /* Lyseblå baggrund */
            padding: 20px;
            border-radius: 10px;
            border: 2px solid #b3e0ff; /* Blå kant */
            max-width: 600px;
            margin: auto;
            text-align: center;
        }
        .solution-container {
            display: none;
            background-color: white;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #b3e0ff; /* Blå kant */
        }
        .question {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .full-calculation {
            font-size: 28px; /* Største tekst for at fremhæve resultatet */
            font-weight: bold;
        }
        .explanation {
            font-size: 16px; /* Forklaring lidt mindre */
            margin-top: 15px;
        }
        .button-container button {
            font-size: 15px;
            padding: 10px 20px;
            margin: 10px;
            cursor: pointer;
            border-radius: 5px;
            border: 1px solid #007acc;
            background-color: #007acc;
            color: white;
        }
        .button-container button:hover {
            background-color: #005a99;
        }


