/* source: faerdighed\statistik\boksplot.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;
        text-align: center;
        background-color: #f0f8ff;
        margin: 0;
        padding: 20px;
    }
    .container {
        background-color: #e6f7ff;
        padding: 20px;
        border-radius: 10px;
        border: 2px solid #b3e0ff;
        max-width: 900px;
        margin: auto;
    }
    h1 {
        color: #005a99;
    }
    img {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 300px;
        border-radius: 8px;
    }
    button, .button-container button, button.standard-button {
        font-size: 15px;
        padding: 10px 20px;
        margin: 10px;
        cursor: pointer;
        border-radius: 5px;
        border: 1px solid #007acc;
        background-color: #007acc;
        color: white;
    }
    button:hover, .button-container button:hover, button.standard-button:hover {
        background-color: #005a99;
    }
    table {
        margin: 20px auto;
        border-collapse: collapse;
        background-color: white;
    }
    td, th {
        border: 1px solid #ccc;
        padding: 8px 15px;
        font-size: 18px;
        text-align: center;
    }
    th {
        background-color: #f4f4f4;
    }
    .instruction, #problem, #task {
        background-color: white;
        padding: 15px;
        border-radius: 8px;
        margin-top: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        font-size: 18px;
    }
    .solution, #answer {
        background-color: white;
        padding: 15px;
        border-radius: 8px;
        margin-top: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        font-size: 18px;
        display: none; /* Skjul fra start, men UDEN visibility:hidden */
    }
    #boxplotCanvas, #frequencyChart {
        margin-top: 20px;
        background-color: white;
        border-radius: 8px;
    }
    #container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


