.profile-avatar-container {
    position: relative;
    display: inline-block;
    width: 150px; /* Largura fixa */
    height: 150px; /* Altura idêntica à largura */
    margin-bottom: 25px; /* Espaço extra para o badge de status não sobrepor tanto */
}

.profile-image-circular {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    
    /* ISSO AQUI É O MAIS IMPORTANTE: */
    object-fit: cover; 
    object-position: center; /* Garante que o rosto fique centralizado */
    
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: inline-block;
	
	transition: transform 0.2s;
}

/* Ajuste do botão de câmera para não sumir no oval */
.edit-camera-fab {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #fff;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    z-index: 10;
    border: 1px solid #ddd;
}

.status-badge-overlay {
    margin-top: 20px;
	margin-bottom: 20px;
}

.status-badge-custom {
    font-size: 0.85rem;
    font-weight: bold;
    border: 2px solid white !important; 
}