/* source: faerdighed\anvendt\rabat.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;
        text-align: center;
    }
    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;
        width: auto;
    }
    th, td {
        border: 1px solid #ccc;
        padding: 8px 15px;
        text-align: center;
    }
    th {
        background-color: #f4f4f4;
    }
    .instruction, #problem, #task, .solution, #solution {
        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;
    }
    .thermometer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    .thermometer {
        display: inline-block;
        position: relative;
        width: 50px;
    }
    .thermometer-scale {
        width: 30px;
        height: 200px;
        border: 2px solid #000;
        position: relative;
        background: #e0e0e0;
    }
    .thermometer-read {
        width: 30px;
        position: absolute;
        bottom: 0;
    }
    .scale-line {
        position: absolute;
        width: 10px;
        height: 2px;
        background: black;
    }
    .scale-label {
        position: absolute;
        left: 35px;
        font-size: 12px;
        transform: translateY(-50%);
    }


