.container {
    border: 1px solid #dfdfde;
    background: #fff;
    margin: 10px;
    border-radius: 5px;
    width: 95%;
    height: 240px;
    max-height: 240px !important;
    padding-left: 0;
    padding-right: 5px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.tabs-container {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
}

#tabs {
    flex: 0 0 150px;
    height: 100%;
    overflow: hidden;
    flex-wrap: nowrap !important;
    flex-direction: column !important;
    box-sizing: border-box;
}

#tabs .nav-link {
    border-color: #dfdfde !important;
    transition: border-color 0.3s ease-in-out;
    text-align: left;
    font-weight: bold;
    color: #4b4b4b;
    border-radius: 0;
    border-right: 1px solid #dfdfde;
    background-color: #F0F0F0;
    width: 100%;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
#tabs .nav-link.active {
    border-color: #dfdfde !important;
    color: #4b4b4b;
    border-bottom: 1px solid #dfdfde;
    border-top: 1px solid #dfdfde;
    border-left: 1px solid #dfdfde;
    border-right: none;
    background-color: transparent;
    border-radius: 4px 0 0 4px;
}

.groups-container {
    flex: 1 1 auto;
    padding-left: 20px;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tab-content {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.tab-pane {
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-content: start;
}

.tab-pane > a.btn {
    white-space: nowrap;
    flex: 0 0 auto;
}

.wrapper { display: flex; justify-content: center; background-color: transparent; }
#tabs .nav-link:first-child { border-top: none; }

.to_all {
    color: #4b4b4b;
    font-size: 16px;
    cursor:pointer;
    text-decoration: none;
    text-align: left;
}

.to_all_div, .news {
    width: 95%;
    max-width: 1320px;
}

.news {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.news_title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #4b4b4b;
}

.news_container {
    width: 100%;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #dfdfde;
    min-height: 50px;
    margin: 10px 0 10px 0;
    padding: 10px 15px 10px 15px;

}

.news_date {
    font-weight: bold;
    color: #4b4b4b;
    margin-bottom: 3px;
}

.news_content {
    color: #4b4b4b;
    line-height: 1;
}