.filterable-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-list ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.filter-list .top-filter {
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-list .top-filter:hover {
    background-color: #f0f2f5;
}

.filter-list .top-filter.active {
    background-color: #3361ff;
    color: white;
}

.filters-item-content-wrapper {
    display: flex;
    gap: 20px;
    min-height: 301px;
    border: solid 1px #eee;
    padding-top: 10px;
}

.filterable-content-items {
    width: 60%;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.filterable-content-items ul{
    list-style-type:none;
}

.filterable-content-items .content-item {
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.filterable-content-items .content-item:hover {
    background-color: #f0f2f5;
}

.filterable-content-items .content-item.highlight {
    background-color: #e1e8ff;
    color: #3361ff;
}

.filterable-content-items .content-item.active {
    background-color: #3361ff;
    color: white;
    font-weight: 500;
}

.filterable-content-items .content-item.hidden {
     display: block;
    opacity: 0.6;
}


.filterable-content-area {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-card {
    display: none;
}

.content-card.active {
    display: block;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: #e1e8ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #3361ff;
    font-size: 20px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.card-content {
    color: #555;
    line-height: 1.6;
}