footer {
        position: relative;
        padding: 20px;
        background: #f1f1f1;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 10px;
    }

    .footer-links a {
        margin: 0 10px;
        text-decoration: none;
        color: #000;
    }

    .dropup {
        position: relative;
        display: inline-block;
    }

    .dropup-content:hover {
        -webkit-box-shadow: 0px 1px 6px 0px #cccccc;
        box-shadow: 0px 1px 6px 0px #cccccc;
    }

    .dropup-btn {
        background-color: #f1f1f1;
        color: black;
        border-radius: calc(34px / 2);
        padding: 10px;
        font-size: 12px;
        border: none;
        cursor: pointer;
    }
    @media only screen and (max-width: 768px) {
        .dropup-btn {
            font-size: 13px;
        }
    }
    .country-option {
        list-style-type: none;
        padding: 8px 0px;
    }
    .country-option:hover {
        background-color: #f2f2f2;
    }
    .language-option {
        background-color: white;
        padding: 8px 16px;
        margin: 2px 6px;
        border-radius: 8px;
    }
    @media only screen and (max-width: 768px) {
        .language-option {
            padding: 10px 16px;
        }
    }
    .language-option:hover {
        background-color: #f2f2f2;
    }
    .dropup-content {
        display: none;
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        color:black;
        min-width: 160px;
        border-radius: 17px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        z-index: 2147483647;
        padding: 6px 0;
        cursor: pointer;
    }
    .dropup-content ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    @media only screen and (max-width: 768px) {
        .dropup-content {
            font-size: 14px;
            min-width: 160px;
        }
    }

    .dropup-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropup-content a:hover {
        background-color: #f1f1f1;
    }

    /* Tablet/iPad (>=600px): taalmenu-groep rechts op eigen regel, copyright
       links eronder. (Smaller past het niet samen op één regel.) */
    @media only screen and (min-width: 600px) {
        #country-options2 {
            display: block;
            text-align: right;
        }
        footer > p {
            text-align: left;
            margin-top: 6px;
        }
        #country-options2 .dropup-content {
            left: auto;
            right: 0;
            transform: none;
        }
    }
    /* Brede desktop (>=1000px): menu rechts en copyright links op één regel. */
    @media only screen and (min-width: 1000px) {
        footer {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            justify-content: space-between;
        }
        footer > p {
            margin-top: 0;
        }
    }

    .show {
        display: block;
    }
