/*
 PHP version 8.0~

 @license   Commercial
 @copyright Copyright (c) 2026 Ingo Koch
 @link      http://www.computer-freak24.de
 @version   v1.5 07.2026
 @author    Ingo Koch <koch.ingo@t-online.de>
 @lastEdit  05.07.2026
*//* 
    Created on : 05.07.2026, 05:53:26
    Author     : stixnroll
*/
.bo-tabs {
    display: flex;
    gap: 8px;

    border-bottom: 1px solid var(--bo-border);
    margin-bottom: 24px;
}

.bo-tab {
    background: transparent;
    color: var(--bo-muted);

    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;

    padding: 12px 14px;

    cursor: pointer;
    transition: all .2s ease;
}

.bo-tab:hover {
    background: rgba(0,0,0,.04);
    color: var(--bo-text);
}

.bo-tab.active {
    color: var(--bo-primary);
    border-bottom-color: var(--bo-primary);
    background: transparent;
}

.bo-tab-content {
    display: none;
}

.bo-tab-content.active {
    display: block;
}
