.tab-container {
    width: 100%;
}

.tab-header {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.tab-button {
    /*padding: 10px;*/
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
}

.tab-button a:active { background: #0068b7;
    }
.tab-button.active {
    background: #0068b7;
    font-weight:600;
      
}
    .tab-button.active .font {color:#fff;
    }
.tab-content {
    border: 1px solid #ddd;
    padding: 10px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    
}