.enlaces-container {
    padding-top: 40px;
    padding-bottom: 60px;
    font-family: 'Open Sans', sans-serif;
}

.filter-section {
    margin-bottom: 50px;
}

.filter-label {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
}

/* Columns layout for filters */
.filter-btn {
    display: block;
    background: none;
    border: none;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 0;
    text-align: left;
    transition: color 0.3s ease;
    text-decoration: none;
    width: 33.33%; /* 3 columns layout */
    box-sizing: border-box;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .filter-btn {
        width: 100%;
    }
}

.filter-btn:hover, .filter-btn.active {
    color: var(--accent-color); /* Yellow/Orange */
}

.links-list {
    border-top: 1px solid #e0e0e0;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
}

.link-item:hover {
    background-color: #f9f9f9;
}

.link-icon {
    margin-right: 20px;
    color: var(--accent-color);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.link-icon svg {
    fill: var(--accent-color);
    width: 20px;
    height: 20px;
}

.link-content {
    flex-grow: 1;
}

.link-title {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.link-title:hover {
    color: var(--accent-color);
}

.hidden-item {
    display: none !important;
}
