.member-collage {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.member-card {
    border: 1px solid #ddd;
    padding: 10px;
    width: 200px;
    text-align: center;
}

.member-card img {
    max-width: 100%;
    height: auto;
}

.name, .designation, .district {
    margin: 5px 0;
    color: #f0f0f0; /* Light gray for visibility on dark blue background */
}

.view-more, .download-id {
    background: #0073aa;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin: 5px 0;
    display: inline-block;
    text-decoration: none;
}

.view-more:hover, .download-id:hover {
    background: #005177;
}

.member-details {
    margin-top: 10px;
    color: #f0f0f0; /* Light gray for expanded details */
}