.ipd-filter {
    margin-bottom: 20px;
    text-align: center;
}

.ipd-filter button {
    margin: 5px;
    padding: 8px 15px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 20px;
}

.ipd-filter button.active {
    background: #2ecc71;
    color: #fff;
}

.ipd-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ipd-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    background: #fff;
}

.ipd-card:hover {
    transform: translateY(-5px);
}

.ipd-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ipd-card h3 {
    margin: 10px;
    font-size: 18px;
}

.ipd-card p {
    margin: 0 10px 15px;
    font-size: 14px;
    color: #555;
}
.ipd-info-message {
    background: #fff3cd;
    border: 1px solid #ffecb5;
    color: #856404;
    padding: 15px;
    border-radius: 6px;
    font-weight: bold;
}
