.wcct-wrapper {
    margin-bottom: 30px;
}

.wcct-tabs {
    display: flex;
    flex-direction: row;
    border: 1px solid #e0e0e0;
    min-height: 200px;
}

.wcct-tab-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 220px;
    border-right: 1px solid #e0e0e0;
    background: #fafafa;
}

.wcct-tab-nav-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.wcct-tab-nav-item.wcct-active {
    background: #ffffff;
    border-left: 4px solid #3c8f3c;
    padding-left: 12px;
}

.wcct-tab-panels {
    flex: 1;
    padding: 20px;
    background: #ffffff;
}

.wcct-tab-panel {
    display: none;
}

.wcct-tab-panel.wcct-active {
    display: block;
}

/* Mobilon legyenek egymás alatt a fülek */
@media (max-width: 768px) {
    .wcct-tabs {
        flex-direction: column;
    }
    .wcct-tab-nav {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    .wcct-tab-nav-item {
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
    }
}
