.nav-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-bottom: 2px solid #ccc;
}

.nav-tabs li {
    padding: 10px 18px;
    margin-right: 4px;
    border: 1px solid #ccc;
    border-bottom: none;
    background: #f5f5f5;
    cursor: pointer;

    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/* aktiivinen */
.nav-tabs li.active {
    background: #ffffff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    margin-bottom: -2px;
    z-index: 2;

    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* aktiivinen, poista linkityksen näkyvyys mutta jätä linkitys toimimaan */
.nav-tabs li.active a {
    text-decoration: none;
    color: #000;
    cursor: default;
}

/* Palauttaa selaimen oletusasetukset checkboxille */
input[type="checkbox"] {
    appearance: auto;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    width: auto;
    height: auto;
}