.matching-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.filter-sidebar {
    width: 250px;
    padding: 10px;
    background: #f9f9f9;
    border-right: 1px solid #ddd;
}

.etudiant-list {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    padding: 10px;
}

.etudiant-row {
    display: flex;
    width: 100%;
}

.etudiant-column {
    flex: 1 1 33%;
    padding: 10px;
    box-sizing: border-box;
}

.etudiant-card {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.profile-picture {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.info-container {
    text-align: center;
}

.recruit-button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.recruit-button:hover {
    background: #005177;
}

@media (max-width: 768px) {
    .etudiant-column {
        flex: 1 1 100%;
    }
}
