/*TABS*/

.tabs__contentrow > div {
    display: none;
}

.tabs__contentrow > .is-active {
    display: block;
}

.tabs__buttonrow a,
.tabs__buttonrow button,
.tabs__buttonrow > div {
    cursor: pointer;
}


/*Styling*/

.tabs__buttonrow {
    display: flex;
    gap: 8px;
}

/* Base style */
.tabs__buttonrow button {
    background: rgba(0,222,179,0.3);
    border: none;
    padding: 16px 20px 12px 20px;
    border-radius: 8px 8px 0 0;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover */
.tabs__buttonrow button:hover {
    text-decoration: underline;
}

/* Aktiv tab */
.tabs__buttonrow button.is-active {
    background-color: rgba(0,43,69,0.05);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* Innhold-wrapper (for å "koble" visuelt) */
.tabs__contentrow {
    background: rgba(0,222,179,0.3);
    padding: 20px;
    background-color: rgba(0,43,69,0.05);
}