/* Profile Grid Title */
.profile-grid-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: bold;
}

/* Horizontal Filter Layout */
.horizontal-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.filter-dropdown-section {
    position: relative;
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    max-width: 300px;
}

.filter-category {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.toggle-icon {
    font-size: 24px;
    cursor: pointer;
    display: block;
    margin: 5px auto 15px auto;
    text-align: center;
}

/* Filter Options */
.filter-options {
    display: none;
    text-align: center;
}

.filter-options.active {
    display: block;
}

.filter-btn {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 8px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 0;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #333;
    color: white;
    border-color: #333;
}

/* Selected Filters Display */
.selected-filters {
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.selected-filter-labels {
    font-weight: 500;
}

/* Profile Grid Layout */
.profile-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Profile Card */
.profile-card {
    width: 33.33%;
    padding: 15px;
    box-sizing: border-box;
    max-width: 33.33%;
}

/* Profile Card Inner */
.profile-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Clean up links in grid */
.profile-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

/* Profile Image */
.profile-img {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
}

.circular-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.no-image {
    background-color: #f0f0f0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Name */
.profile-name {
    font-weight: 500;
    margin-top: 15px;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .profile-card {
        width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .profile-card {
        width: 100%;
        max-width: 100%;
    }
}