﻿
.tab-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x:hidden !important;
}

.tabs {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    background: #f1f1f1;
    text-align: center;
    flex: 1;
    margin: 0 5px;
}

    .tab-item.active {
        background: #06402B;
        color: #debe74;
    }

.tab-content {
    flex: 1;
    padding: 10px;
   /* background: #fff;*/
    border: 1px solid #ddd;
}

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
    }


