/* Используется в info.php */

.tabs {
    margin-top: 1rem;
    display: flex;
    border-bottom: solid 1px;
    align-items: end;
}

.tab {
    padding: .5rem 1.5rem;
    cursor: pointer;
    border: solid 1px;
    border-bottom: none;
    border-right: none;
    font-weight: bold;
}

.tab:only-child {
    border-radius: 5px 5px 0 0 !important;
}

.tab:first-child {
    border-radius: 5px 0 0 0;
}

.tab:last-child {
    border-radius: 0 5px 0 0;
    border-right: solid 1px;
}

.tab.active {
    padding-bottom: .5rem;
}

.tab span {
    opacity: 0.7;
}

.tab.active span {
    opacity: 1;
}

.tab-contents {
    overflow-x: auto;
    border-bottom: solid 1px;
    padding: 4px 0 4px 0;
}

.hidden {
    display: none;
}
