[data-tab-content] {
    display: none;
}

.active[data-tab-content]{
    display: block;
}

body {
    padding: 0;
    margin: 0;
}

.tabs {
    display: flex;
    justify-content: flex-start;
    list-style-type: none;
    margin: 0;
    padding: 0;
    /* border-bottom: 1px solid red;     */
}

.tab {
    cursor: pointer;
    padding: 10px;
    color: #0056B3;
    font-family: 'Hind', sans-serif;
    border: 1px solid #dee2e6;
}

#spare_tab {
    width: 100%;
    border-bottom: 1px solid #dee2e6;
}

.tab.active {
    /* background-color: #CCC; */
    color: #010d1a;
    border-bottom: none;
    /* margin-bottom: -1px; */
}

.tab:hover {
    /* background-color: #AAA; */
    color: #002e5f;
}

.tab-content {
    margin-left: 20px;
    margin-right: 20px;
    justify-content: center;
    line-height: 1.6;
    /* border-top: 1px solid #dee2e6; */
}

.snippet {
    height: 400px;
    /* width: 100%; */
    background-color: #f5f5fa;
    margin: 80px;
    margin-top: 16px;
    padding: 24px;
    font-family: 'Inconsolata', monospace;
    color: #23263a;
}

.red-word {
    color: #d01040;
}

.green-word {
    color: #3a9292;
}

.purple-word {
    color: #990073;
}

.yellow-word {
    color: #a19b4f;
}

.blue-word {
    color:#6a95ac;
}

.grey_word {
    color:rgba(175, 167, 167, 1);
}