﻿@charset "UTF-8";

.tab {
    display: none;
}

    .tab.active {
        display: block;
    }

.tab-buttons {
    display: flex;
    cursor: pointer;
    margin-bottom: 1rem;
}

    .tab-buttons div {
        padding: 10px;
        border: 1px solid #ccc;
        margin-right: 5px;
    }

    .tab-buttons .active {
        background-color: #ccc;
    }

.tab-button {
    border-radius: 4px;
}