﻿#act {
    color: white;
    background-color: #f8b445;
    float: left;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 14px;
    width: 20%;
    border: none;
    outline: none;
}
#strand {
    color: white;
    background-color: #127eb3;
    float: left;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 14px;
    width: 20%;
    border: none;
    outline: none;
}
#tab-buttons {
    display: flex;
    align-items: stretch;
    min-height: 100%;
}

#strand.tab-link:focus {
    border: 2px solid black;
    border-radius: 4px;
}

#act.tab-link:focus {
    border: 2px solid black;
    border-radius: 4px;
}

.dark #strand.tab-link:focus {
    border: 2px solid white;
    border-radius: 4px;
}

.dark #act.tab-link:focus {
    border: 2px solid white;
    border-radius: 4px;
}

.dark #strand {
    color: #121212;
}
.dark #act {
    color: #121212;
}
@media (prefers-color-scheme: dark) {
    #strand {
        color: #121212;
    }
    #act {
        color: #121212;
    }

    #strand.tab-link:focus {
        border: 2px solid white;
        border-radius: 4px;
    }

    #act.tab-link:focus {
        border: 2px solid white;
        border-radius: 4px;
    }

    .light #strand.tab-link:focus {
        border: 2px solid black;
        border-radius: 4px;
    }

    .light #act.tab-link:focus {
        border: 2px solid black;
        border-radius: 4px;
    }

    .light #strand {
        color: white;
    }

    .light #act {
        color: white;
    }
}