body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f4f4f9;
}

h1, h2 {
    text-align: center;
    color: #333;
}

#profile-form, #search-filter, #profile-gallery, #groups {
    max-width: 600px;
    margin: 20px auto;
}

form {
    display: flex;
    flex-direction: column;
}

label, input, select, button {
    margin: 10px 0;
    padding: 10px;
}

#profiles-container, #groups-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.profile-card, .group-card {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    width: 200px;
    background-color: white;
    text-align: center;
}