/* Profile Picture Styles - Consistent circular profile pictures */

.profile-picture {
    border-radius: 50%;
    object-fit: contain;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s ease-in-out;
}

/* Size variants */
.profile-picture--small {
    width: 80px;
    height: 80px;
}

.profile-picture--medium {
    width: 140px;
    height: 140px;
}

.profile-picture--large {
    width: 180px;
    height: 180px;
}

/* Responsive sizing */
@media (max-width: 576px) {
    .profile-picture--small {
        width: 60px;
        height: 60px;
    }
    
    .profile-picture--medium {
        width: 100px;
        height: 100px;
    }
    
    .profile-picture--large {
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .profile-picture--small {
        width: 70px;
        height: 70px;
    }
    
    .profile-picture--medium {
        width: 120px;
        height: 120px;
    }
    
    .profile-picture--large {
        width: 150px;
        height: 150px;
    }
}

/* Default size for meeting committees (no modifier class) */
.profile-picture:not([class*="--"]) {
    width: 120px;
    height: 120px;
}

@media (max-width: 576px) {
    .profile-picture:not([class*="--"]) {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .profile-picture:not([class*="--"]) {
        width: 100px;
        height: 100px;
    }
}

